mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Changes since last roll: ``` ed303c628 Roll dart sdk again. Previous roll required 23ae4fa098 revert. (#4966) 8cd272733 Revert "Roll dart to 7764e6962e22afcf4b58c4e3cef3147330f3c884. (#4960)" (#4965) 9199b40f2 Revert "Support multiple shells in a single process. (#4932)" (#4964) 6baff4c82 Support multiple shells in a single process. (#4932) 31c5bb427 Roll dart to 7764e6962e22afcf4b58c4e3cef3147330f3c884. (#4960) c8e4c6984 Avoid copying the contents of large platform message responses (#4947) 5ff527295 Update to use new vulkan GrBackendRenderTarget ctor. (#4962) 0c8993a1a Update to use new vulkan GrBackendRenderTarget ctor (part 2) (#4963) 132ebdda8 Revert "Roll src/third_party/skia/ 9874bf1bc..52e16d984 (135 commits) (#4958)" (#4961) 11882ab9e Roll src/third_party/skia/ 9874bf1bc..52e16d984 (135 commits) (#4958) ``` Add consts
72 lines
1.9 KiB
Dart
72 lines
1.9 KiB
Dart
// Copyright 2017 The Chromium 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/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class CupertinoSwitchDemo extends StatefulWidget {
|
|
static const String routeName = '/cupertino/switch';
|
|
|
|
@override
|
|
_CupertinoSwitchDemoState createState() => new _CupertinoSwitchDemoState();
|
|
}
|
|
|
|
class _CupertinoSwitchDemoState extends State<CupertinoSwitchDemo> {
|
|
|
|
bool _switchValue = false;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return new Scaffold(
|
|
appBar: new AppBar(
|
|
title: const Text('Cupertino Switch'),
|
|
),
|
|
body: new Center(
|
|
child: new Column(
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
|
children: <Widget>[
|
|
new Column(
|
|
children: <Widget>[
|
|
new CupertinoSwitch(
|
|
value: _switchValue,
|
|
onChanged: (bool value) {
|
|
setState(() {
|
|
_switchValue = value;
|
|
});
|
|
},
|
|
),
|
|
const Text(
|
|
'Active'
|
|
),
|
|
],
|
|
),
|
|
new Column(
|
|
children: const <Widget>[
|
|
const CupertinoSwitch(
|
|
value: true,
|
|
onChanged: null,
|
|
),
|
|
const Text(
|
|
'Disabled'
|
|
),
|
|
],
|
|
),
|
|
new Column(
|
|
children: const <Widget>[
|
|
const CupertinoSwitch(
|
|
value: false,
|
|
onChanged: null,
|
|
),
|
|
const Text(
|
|
'Disabled'
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|