私のフラッタープロジェクトでBottomNavigationBar
を使用しようとしています。アイテムを供給したいと思います。そしてそのためには、items
のプロパティを使用する必要があります。しかし、私はitems
プロパティをBottomNavigationBarで見つけることができません。添付の画像をご覧ください。フラッターでBottomNavigationBarのitemsプロパティを使用できません
そしてここで完全なコードです:
class _MyHomePageState extends State<MyHomePage>
with SingleTickerProviderStateMixin {
@override
Widget build(BuildContext context) {
// This method is rerun every time setState is called, for instance
// as done by the _incrementCounter method above.
// The Flutter framework has been optimized to make rerunning
// build methods fast, so that you can just rebuild anything that
// needs updating rather than having to individually change
// instances of widgets.
return new Scaffold(
appBar: new AppBar(
// Here we take the value from the MyHomePage object that
// was created by the App.build method, and use it to set
// our appbar title.
title: new Text(config.title),
),
bottomNavigationBar: new BottomNavigationBar(
currentIndex: 0,
onTap: (value){
},
),
// a style that looks nicer for build methods.
);
}
}
指摘してくれてありがとう。インストールされているflutterの現在のバージョンを確認するにはどうしたらいいですか?それを最新バージョンに更新するにはどうすればよいですか? –
さて、それは私の問題を解決しました。 flutter upgradeコマンドを使用して、フラッタを最新バージョンにアップグレードしました。 –