下記コードのMaterialButton
にて、画面遷移ができません...
解決策を教えて頂けると嬉しいです。
同ページにあるimage
からは画面遷移できるのですが、MaterialButton
, FlatButton
などでは出来ません????
RoundedButton
1GestureDetector( 2 onTap: () { 3 Navigator.push( 4 context, 5 MaterialPageRoute(builder: (context) => LoginPage()), 6 ); 7 }, 8 child: MaterialButton( 9 onPressed: (){}, 10 minWidth: double.infinity, 11 height: 60, 12 elevation: 0, 13 shape: RoundedRectangleBorder( 14 borderRadius: BorderRadius.circular(32), 15 side: BorderSide(color: Colors.black, width: 2) 16 ), 17 child: Text( 18 'Hello', 19 style: TextStyle(fontWeight: FontWeight.bold, fontSize: 18), 20 ), 21 22 ), 23 ),
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。