firebase android-wear-notification flutter firebase-cloud-messaging wear-os
@override
Widget build(BuildContext context) {
new Scaffold(
appBar: new AppBar(title: new Text("Demo Project")),
body: new Padding(
padding: new EdgeInsets.all(10.0),
child: new Column(
children: <Widget>[
new ListView(children: getDemolist()),
new ListView(children: getDemolisttwo())
],
),
),
);
}
Run Code Online (Sandbox Code Playgroud)
所有两个列表视图将以响应方式显示在同一区域。