-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Description
class _MainPageState extends State with PdaListenerMixin {
var _code;
@OverRide
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(),
body: Container(
child: TextField(
focusNode: new FocusNode(),
onEditingComplete: () {
print("回车");
},
onSubmitted: (value) {
print("值:" + value);
},
),
),
);
}
@OverRide
void onEvent(Object event) {
print(event);
}
@OverRide
void onError(Object error) {
print(error);
}
}
Metadata
Metadata
Assignees
Labels
No labels