flutterでRaisedButton
にNavigator
を入れたらタイトルのエラーが発生しました
// だめ
RaisedButton(
onPressed: () {
print("入った");
Navigator.push(context, MaterialPageRoute(builder: (context) => GoogleMapSample()));},
child: const Text('Mapをみる', style: TextStyle(fontSize: 20),),
),
// ok
Builder(
builder: (context) {
return RaisedButton(
onPressed: () {
print("入った");
Navigator.push(context, MaterialPageRoute(builder: (context) => GoogleMapSample()));},
child: const Text('Mapをみる', style: TextStyle(fontSize: 20),),
);
},
),
コメントを残す