删除Flutter中的开关切换填充

问题描述 投票:0回答:1

我想在Flutter中删除开关切换填充(左右),但是找不到class属性。你有一个想法怎么做?

see toggle button

ListTile(
 leading: Switch(
  value: _con.user.isAvailable,
  onChanged: (bool value) {
   setState(() {
    _con.user.isAvailable = value;
    updateAvailability(_con.user);
   });
 },
),
 title: Text(
  (_con.user.isAvailable) 
   ? S.of(context).availability 
   : S.of(context).unavailability,
  style: Theme.of(context).textTheme.subhead,
 ),
),

谢谢。

flutter button switch-statement toggle padding
1个回答
0
投票

我在那里看不到任何填充,但是您可以尝试这个吗

MediaQuery.of(context).removePadding()

对于ListTile,您可以尝试

ListTile(
     contentPadding: EdgeInsets.zero,
   )
© www.soinside.com 2019 - 2024. All rights reserved.