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