import 'package:flutter/cupertino.dart'; class CheckboxPage extends StatefulWidget { const CheckboxPage({super.key}); @override State createState() => _CheckboxPageState(); } class _CheckboxPageState extends State { bool _value = false; @override Widget build(BuildContext context) { return CupertinoPageScaffold( navigationBar: const CupertinoNavigationBar(middle: Text('Checkbox')), child: Center( child: CupertinoCheckbox( value: _value, onChanged: (bool? value) { setState(() { _value = value!; }); }, ), ), ); } }