ElevatedButtonのiconが変な位置に表示されます。助けてください。
円の真ん中にiconを表示したいです。
Container( width: 200, height: 50, // alignment: Alignment.bottomRight, decoration: BoxDecoration( border: Border( bottom: BorderSide(color: Colors.black38, width: 1))), child: Stack( alignment: Alignment.bottomCenter, children: [ Text("aaa", style: TextStyle(fontSize: 20)), Align( alignment: Alignment.bottomRight, child: SizedBox( width: 20, height: 20, child: ElevatedButton( onPressed: () {}, child: Icon(Icons.arrow_drop_down), style: ElevatedButton.styleFrom( primary: Colors.white, onPrimary: Colors.black, shape: CircleBorder( side: BorderSide( color: Colors.black, width: 1, style: BorderStyle.solid, ), ), ), ), ), ) ], ), ),
回答1件
あなたの回答
tips
プレビュー