Advertisement
delucaspinto

checkbox

Jun 18th, 2020
1,415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.35 KB | None | 0 0
  1. bool _value = false;
  2. String cartype = '1';
  3.  
  4. @override
  5. void initState() {
  6.     cartype == "1" ? _value = true : _value = false;
  7.     super.initState();
  8. }
  9.  
  10. ...
  11.  
  12. Checkbox(
  13.   value: _value,
  14.   onChanged: (bool value) {
  15.     setState(() {
  16.       _value = value;
  17.     });
  18.   },
  19. ),
  20. Text(_value ? "a" : 'b'),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement