duration_picker 1.2.0 duration_picker: ^1.2.0 copied to clipboard
A time picker widget that can select both minutes and hours. Fork from flutter_duration_picker.
import 'package:duration_picker/duration_picker.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: 'Duration Picker Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Duration Picker Demo'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
Duration _duration = const Duration(seconds: 60);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Expanded(
child: DurationPicker(
duration: _duration,
baseUnit: BaseUnit.second,
onChange: (val) {
setState(() => _duration = val);
},
// upperBound: const Duration(
// seconds: 120,
// ),
// lowerBound: const Duration(
// seconds: 5,
// ),
),
),
],
),
),
floatingActionButton: Builder(
builder: (BuildContext context) => FloatingActionButton(
onPressed: () async {
final resultingDuration = await showDurationPicker(
context: context,
initialTime: const Duration(seconds: 30),
baseUnit: BaseUnit.second,
upperBound: const Duration(seconds: 60),
lowerBound: const Duration(seconds: 10),
);
if (!context.mounted) return;
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
content: Text('Chose duration: $resultingDuration'),
),
);
},
tooltip: 'Popup Duration Picker',
child: const Icon(Icons.add),
),
),
);
}
}