import 'package:flutter_ics_homescreen/export.dart'; import 'package:intl/intl.dart'; class DateTimePage extends ConsumerWidget { const DateTimePage({super.key}); static Page page() => const MaterialPage(child: DateTimePage()); @override Widget build(BuildContext context, WidgetRef ref) { DateFormat dateFormat = DateFormat().add_yMMMMd(); DateFormat timeFormat = DateFormat('hh:mm a'); final currentime = ref.watch(currentTimeProvider); return Scaffold( body: Column( children: [ CommonTitle( title: 'Date & Time', hasBackButton: true, onPressed: () { ref.read(appProvider.notifier).back(); }, ), Expanded( child: Padding( padding: const EdgeInsets.symmetric(horizontal: 144), child: ListView( children: [ UnitsTile( image: "assets/Calendar.svg", title: 'Date', unitName: dateFormat.format(currentime), hasSwich: false, voidCallback: () async { context .flow() .update((next) => AppState.date); }), UnitsTile( image: "assets/Time.svg", title: 'Time', unitName: timeFormat.format(currentime), hasSwich: true, voidCallback: () { context .flow() .update((next) => AppState.time); }), ], ), ), ), ], ), ); } }