bottom_picker 4.2.0
bottom_picker: ^4.2.0 copied to clipboard
An easy way that let you create a bottom item picker or date & time picker with minmum parameters
import 'package:example/example_widget.dart';
import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(primarySwatch: Colors.blueGrey),
localizationsDelegates: [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
],
supportedLocales: [Locale('en'), Locale('ar')],
home: Scaffold(body: ExampleApp()),
);
}
}