| // Copyright 2014 The Flutter Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| import 'package:flutter/material.dart'; |
| |
| /// Flutter code sample for [SwitchListTile]. |
| |
| void main() => runApp(const SwitchListTileApp()); |
| |
| class SwitchListTileApp extends StatelessWidget { |
| const SwitchListTileApp({super.key}); |
| |
| @override |
| Widget build(BuildContext context) { |
| return MaterialApp( |
| theme: ThemeData(useMaterial3: true), |
| home: Scaffold( |
| appBar: AppBar(title: const Text('SwitchListTile Sample')), |
| body: const Center( |
| child: SwitchListTileExample(), |
| ), |
| ), |
| ); |
| } |
| } |
| |
| class SwitchListTileExample extends StatefulWidget { |
| const SwitchListTileExample({super.key}); |
| |
| @override |
| State<SwitchListTileExample> createState() => _SwitchListTileExampleState(); |
| } |
| |
| class _SwitchListTileExampleState extends State<SwitchListTileExample> { |
| bool _lights = false; |
| |
| @override |
| Widget build(BuildContext context) { |
| return SwitchListTile( |
| title: const Text('Lights'), |
| value: _lights, |
| onChanged: (bool value) { |
| setState(() { |
| _lights = value; |
| }); |
| }, |
| secondary: const Icon(Icons.lightbulb_outline), |
| ); |
| } |
| } |