dropdown_button.style.0.dart 2.16 KB
Newer Older
1 2 3 4 5 6
// 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';

7 8
/// Flutter code sample for [DropdownButton.style].

9
void main() => runApp(const DropdownButtonApp());
10

11
class DropdownButtonApp extends StatelessWidget {
12
  const DropdownButtonApp({super.key});
13 14 15 16 17

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
18 19
        appBar: AppBar(title: const Text('DropdownButton Sample')),
        body: const DropdownButtonExample(),
20 21 22 23 24
      ),
    );
  }
}

25
class DropdownButtonExample extends StatefulWidget {
26
  const DropdownButtonExample({super.key});
27 28

  @override
29
  State<DropdownButtonExample> createState() => _DropdownButtonExampleState();
30 31
}

32 33
class _DropdownButtonExampleState extends State<DropdownButtonExample> {
  List<String> options = <String>['One', 'Two', 'Three', 'Four'];
34 35 36 37 38 39 40 41 42
  String dropdownValue = 'One';

  @override
  Widget build(BuildContext context) {
    return Container(
      alignment: Alignment.center,
      color: Colors.blue,
      child: DropdownButton<String>(
        value: dropdownValue,
43 44
        onChanged: (String? value) {
          // This is called when the user selects an item.
45
          setState(() {
46
            dropdownValue = value!;
47 48 49 50
          });
        },
        style: const TextStyle(color: Colors.blue),
        selectedItemBuilder: (BuildContext context) {
51 52 53
          // This is the widget that will be shown when you select an item.
          // Here custom text style, alignment and layout size can be applied
          // to selected item string.
54
          return options.map((String value) {
55 56 57 58 59 60
            return Align(
              alignment: Alignment.centerLeft,
              child: Text(
                dropdownValue,
                style: const TextStyle(color: Colors.white),
              ),
61 62 63 64 65 66 67 68 69 70 71 72 73
            );
          }).toList();
        },
        items: options.map<DropdownMenuItem<String>>((String value) {
          return DropdownMenuItem<String>(
            value: value,
            child: Text(value),
          );
        }).toList(),
      ),
    );
  }
}