dropdown_cupertino 0.0.8 copy "dropdown_cupertino: ^0.0.8" to clipboard
dropdown_cupertino: ^0.0.8 copied to clipboard

DropDown cupertino flutter package.

example/lib/main.dart

import 'package:dropdown_cupertino/dropdown_cupertino.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

enum Person {
  yakup,
  burak,
  ramazan,
}

Map<Person?, String> personMap = {
  null: "INITIAL",
  Person.yakup: "YAKUP",
  Person.ramazan: "RAMAZAN",
  Person.burak: "BURAK"
};

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            DropDownCupertino<Person>(
              initialText: "Select a Person :",
              pickList: personMap,
              height: 160,
              onSelectedItemChanged: ((selected) {
                debugPrint("Selected text is: $selected");
              }),
            )
          ],
        ),
      ),
    );
  }
}
3
likes
140
points
150
downloads

Publisher

unverified uploader

Weekly Downloads

DropDown cupertino flutter package.

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on dropdown_cupertino