selection_controls_demo.dart 6.16 KB
Newer Older
1 2 3 4 5 6
// Copyright 2015 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/material.dart';

7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
import '../gallery/demo.dart';

const String _checkboxText =
  "# Checkboxes\n"
  "Checkboxes allow the user to select multiple options from a set.";

const String _checkboxCode =
"""// Member variable holding the checkbox's value.
bool checkboxValue = false;

// Create a checkbox.
new Checkbox(
  value: checkboxValue,
  onChanged: (bool value) {
    setState(() {
      checkboxValue = value;
    }
  );
})

// Create a disabled checkbox.
// Checkboxes are disabled when onChanged isn't
// specified or null.
new Checkbox(value: false)""";

const String _radioText =
  "# Radio buttons\n"
  "Radio buttons allow the user to select one option from a set. Use radio "
  "buttons for exclusive selection if you think that the user needs to see "
  "all available options side-by-side.";

const String _radioCode =
"""// Member variable holding value.
int radioValue = 0;

// Method setting value.
void handleRadioValueChanged(int value) {
  setState(() {
    radioValue = value;
  });
}

// Creates a set of radio buttons.
new Row(
  children: <Widget>[
    new Radio<int>(
      value: 0,
      groupValue: radioValue,
      onChanged: handleRadioValueChanged
    ),
    new Radio<int>(
      value: 1,
      groupValue: radioValue,
      onChanged: handleRadioValueChanged
    ),
    new Radio<int>(
      value: 2,
      groupValue: radioValue,
      onChanged: handleRadioValueChanged
    )
  ]
);

// Creates a disabled radio button.
new Radio<int>(
  value: 0,
  groupValue: 0
);""";

const String _switchText =
  "# Switches\n"
  "On/off switches toggle the state of a single settings option. The option "
  "that the switch controls, as well as the state it’s in, should be made "
  "clear from the corresponding inline label.";

const String _switchCode =
"""// Member variable holding value.
bool switchValue = false;

// Create a switch.
new Switch(
  value: switchValue,
  onChanged: (bool value) {
    setState(() {
      switchValue = value;
    }
  );
})

// Create a disabled switch.
// Switches are disabled when onChanged isn't
// specified or null.
new Switch(value: false)""";

101
class SelectionControlsDemo extends StatefulWidget {
102
  @override
103
  _SelectionControlsDemoState createState() => new _SelectionControlsDemoState();
104 105
}

106
class _SelectionControlsDemoState extends State<SelectionControlsDemo> {
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
  @override
  Widget build(BuildContext context) {
    List<ComponentDemoTabData> demos = <ComponentDemoTabData>[
      new ComponentDemoTabData(
        tabName: "CHECKBOX",
        description: _checkboxText,
        widget: buildCheckbox(),
        exampleCode: _checkboxCode
      ),
      new ComponentDemoTabData(
        tabName: "RADIO",
        description: _radioText,
        widget: buildRadio(),
        exampleCode: _radioCode
      ),
      new ComponentDemoTabData(
        tabName: "SWITCH",
        description: _switchText,
        widget: buildSwitch(),
        exampleCode: _switchCode
      )
    ];
129

130 131 132 133
    return new TabbedComponentDemoScaffold(
      title: 'Selection Controls',
      demos: demos
    );
134 135
  }

136 137 138 139
  bool checkboxValueA = true;
  bool checkboxValueB = false;
  int radioValue = 0;
  bool switchValue = false;
140

141
  void handleRadioValueChanged(int value) {
142
    setState(() {
143
      radioValue = value;
144 145 146
    });
  }

147 148 149 150 151
  Widget buildCheckbox() {
    return new Align(
      alignment: new FractionalOffset(0.5, 0.4),
      child: new Column(
        mainAxisAlignment: MainAxisAlignment.collapse,
152 153
        children: <Widget>[
          new Row(
154
            mainAxisAlignment: MainAxisAlignment.collapse,
155
            children: <Widget>[
156 157 158 159 160 161 162 163 164 165 166
              new Checkbox(value: checkboxValueA, onChanged: (bool value) {
                setState(() {
                  checkboxValueA = value;
                });
              }),
              new Checkbox(value: checkboxValueB, onChanged: (bool value) {
                setState(() {
                  checkboxValueB = value;
                });
              })
            ]
167 168
          ),
          new Row(
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
            mainAxisAlignment: MainAxisAlignment.collapse,
            children: <Widget>[
              // Disabled checkboxes
              new Checkbox(value: true),
              new Checkbox(value: false)
            ]
          )
        ]
      )
    );
  }

  Widget buildRadio() {
    return new Align(
      alignment: new FractionalOffset(0.5, 0.4),
      child: new Column(
        mainAxisAlignment: MainAxisAlignment.collapse,
        children: <Widget>[
187
          new Row(
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
            mainAxisAlignment: MainAxisAlignment.collapse,
            children: <Widget>[
              new Radio<int>(
                value: 0,
                groupValue: radioValue,
                onChanged: handleRadioValueChanged
              ),
              new Radio<int>(
                value: 1,
                groupValue: radioValue,
                onChanged: handleRadioValueChanged
              ),
              new Radio<int>(
                value: 2,
                groupValue: radioValue,
                onChanged: handleRadioValueChanged
              )
            ]
206
          ),
207
          // Disabled radio buttons
208
          new Row(
209
            mainAxisAlignment: MainAxisAlignment.collapse,
210
            children: <Widget>[
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
              new Radio<int>(
                value: 0,
                groupValue: 0
              ),
              new Radio<int>(
                value: 1,
                groupValue: 0
              ),
              new Radio<int>(
                value: 2,
                groupValue: 0
              )
            ]
          )
        ]
      )
    );
  }

  Widget buildSwitch() {
    return new Align(
      alignment: new FractionalOffset(0.5, 0.4),
      child: new Row(
        mainAxisAlignment: MainAxisAlignment.collapse,
        children: <Widget>[
          new Switch(value: switchValue, onChanged: (bool value) {
            setState(() {
              switchValue = value;
            });
          }),
          // Disabled switches
          new Switch(value: true),
          new Switch(value: false)
        ]
245 246 247 248
      )
    );
  }
}