flutter_stage_status_picker 1.0.0 copy "flutter_stage_status_picker: ^1.0.0" to clipboard
flutter_stage_status_picker: ^1.0.0 copied to clipboard

A Flutter widget that provides a dropdown for selecting statuses with customizable options.

example/lib/main.dart

import 'package:example/state_status_picker_example.dart';
import 'package:flutter/material.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Material App',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Material App Bar'),
        ),
        body: Center(
          child: SingleChildScrollView(
            child: Column(
              children: [
                StateStatusPickerExample(),
              ],
            ),
          )
        ),
      ),
    );
  }
}
4
likes
160
points
12
downloads

Publisher

verified publisherdarienrl.dev

Weekly Downloads

A Flutter widget that provides a dropdown for selecting statuses with customizable options.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

diacritic, flutter

More

Packages that depend on flutter_stage_status_picker