audio sschedule shutdown

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-02-08 15:19:23 +08:00
parent 8234b7ac92
commit 0c65605ac0
23 changed files with 466 additions and 593 deletions

View File

@@ -0,0 +1,15 @@
import 'package:flutter/material.dart' as material;
Future<material.TimeOfDay?> showTimePicker({
required material.BuildContext context,
required material.TimeOfDay initialTime,
}) => material.showTimePicker(
context: context,
initialTime: initialTime,
builder: (context, child) => material.DialogTheme(
data: material.DialogTheme.of(
context,
).copyWith(constraints: const material.BoxConstraints(minWidth: 280)),
child: child,
),
);