MaterialButton(orRaisedButton)の両サイドにて、デフォルトのmargin
(padding
?)を消したいです。
(両サイドのmargin
です。)
下記スクリーンショット、⊖ボタンの両サイドです。
解決策を教えて頂けると嬉しいです。
Flutter
1MaterialButton( 2 onPressed: () {}, 3 color: Colors.white, 4 shape: CircleBorder( 5 side: BorderSide( 6 color: Colors.grey, 7 width: 2, 8 ) 9 ), 10 highlightColor: Colors.orange[100], 11 child: Icon(Icons.remove), 12 ),
-Margin対策としてContaier
をGestureDetector
で囲んでいたのですが、Buttonのmarginを綺麗に消せる方法があれば教えて頂きたいです????
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/10 15:29 編集
2020/07/10 15:39
2020/07/10 16:14