Cupertinoswitch Bottom Border

[Solved] Cupertinoswitch Bottom Border | Swift - Code Explorer | yomemimo.com
Question : CupertinoSwitch bottom border

Answered by : brendan-ejike

MergeSemantics( child: ListTile( title: Text('Lights'), trailing: CupertinoSwitch( value: _lights, onChanged: (bool value) { setState(() { _lights = value; }); }, ), onTap: () { setState(() { _lights = !_lights; }); }, ),
)

Source : https://rrtutors.com/Flutter-CupertinoSwitch | Last Update : Fri, 24 Sep 21

Answers related to cupertinoswitch bottom border

Code Explorer Popular Question For Swift