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