Flutterでタブから画面遷移をしたい
Flutterで下部に2つのタブ(bottom navigation)を作成しました。
そのうちの左のページの中のボタンを押して、画面遷移(最下部に記述)をさせたいと考えております。
しかし、結果は上手くいかず、以下のようなエラーが表示されました。
Fluter
1// 表示されたエラー 2Error: Getter not found: 'context'.
Fluter
1import 'package:flutter/material.dart'; 2 3void main() => runApp(MyApp()); 4 5/// This Widget is the main application widget. 6class MyApp extends StatelessWidget { 7 static const String _title = 'Flutter Code Sample'; 8 @override 9 Widget build(BuildContext context) { 10 return MaterialApp( 11 title: _title, 12 home: MyStatefulWidget(), 13 theme: ThemeData( 14 primarySwatch: Colors.blue, 15 ), 16 ); 17 } 18} 19 20// 状態 21class MyStatefulWidget extends StatefulWidget { 22 MyStatefulWidget({Key key}) : super(key: key); 23 @override 24 // 更新 25 _MyStatefulWidgetState createState() => _MyStatefulWidgetState(); 26} 27 28class _MyStatefulWidgetState extends State<MyStatefulWidget> { 29 int _selectedIndex = 0; 30 static List<Widget> _widgetOptions = <Widget>[ 31 // 画面 32 33 // ページ1の画面 34 Center( 35 child: RaisedButton( 36 child: Text('新しいページへ'), 37 color: Colors.orange, 38 textColor: Colors.white, 39 onPressed: () { 40 Navigator.push( 41 context, 42 MaterialPageRoute( 43 builder: (context) => NewPage(), 44 ), 45 ); 46 }, 47 ), 48 ), 49 50 // ページ2の画面 51 Text( 52 'ページ2', 53 ), 54 55 ]; 56 57 void _onItemTapped(int index) { 58 setState(() { 59 _selectedIndex = index; 60 }); 61 } 62 63 @override 64 Widget build(BuildContext context) { 65 return Scaffold( 66 appBar: AppBar( 67 title: const Text('DEMO'), 68 ), 69 body: Center( 70 child: _widgetOptions.elementAt(_selectedIndex), 71 ), 72 73 // 下のナビゲーションボタン 74 bottomNavigationBar: BottomNavigationBar( 75 items: const <BottomNavigationBarItem>[ 76 BottomNavigationBarItem( 77 icon: Icon(Icons.home), 78 title: Text('Home'), 79 ), 80 BottomNavigationBarItem( 81 icon: Icon(Icons.directions_walk), 82 title: Text('Health'), 83 ), 84 ], 85 86 // 選択 87 currentIndex: _selectedIndex, 88 // 選択したときはオレンジ色にする 89 selectedItemColor: Colors.amber[800], 90 // タップできるように 91 onTap: _onItemTapped, 92 ), 93 ); 94 } 95} 96 97// 新しいページ(遷移するページ) 98class NewPage extends StatelessWidget { 99 @override 100 Widget build(BuildContext context) { 101 return Scaffold( 102 appBar: AppBar( 103 title: Text("新しいページ"), 104 ), 105 body: Center( 106 child: RaisedButton( 107 onPressed: () { 108 Navigator.pop(context); 109 }, 110 child: Text('戻る'), 111 ), 112 ), 113 ); 114 } 115} 116
試したこと
公式サイトを参考にページ遷移を実装した.
エラーを確認し、ネットで調べた.
最後に
ご教示いただけたら幸いです。
どうぞよろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/28 14:50