Advertisement
Sebuahhobi98

list flutter]

May 22nd, 2022
1,304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 1.03 KB | None | 0 0
  1. List state = [
  2.     false,
  3.     true,
  4.     false,
  5.     false,
  6. ];
  7.  
  8. Widget switchs(label, index) {
  9.       return Container(
  10.         padding: const EdgeInsets.only(
  11.           top: 20,
  12.         ),
  13.         child: Row(
  14.           children: <Widget>[
  15.             Text(
  16.               label,
  17.               style: primaryTextStyle.copyWith(
  18.                 fontSize: 24,
  19.                 fontWeight: semiBold,
  20.               ),
  21.             ),
  22.             const SizedBox(
  23.               width: 200,
  24.             ),
  25.             FlutterSwitch(
  26.               width: 125.0,
  27.               height: 55.0,
  28.               valueFontSize: 25.0,
  29.               toggleSize: 45.0,
  30.               value: state[index],
  31.               borderRadius: 30.0,
  32.               padding: 8.0,
  33.               showOnOff: true,
  34.               activeColor: Colors.blueAccent,
  35.               onToggle: (val) {
  36.                 setState(() {
  37.                   state[index] = val;
  38.                 });
  39.               },
  40.             ),
  41.           ],
  42.         ),
  43.       );
  44.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement