LEFT property
final
Move focus to the left.
Officially Supported Platforms/Implementations:
- Android WebView (Official API - FOCUS_LEFT)
Implementation
static final LEFT = FocusDirection._internalMultiPlatform('LEFT', () {
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return 130;
default:
break;
}
return null;
});