mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 09:45:22 +00:00
20 lines
416 B
Dart
20 lines
416 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class AlertDialogCountdown extends StatefulWidget {
|
|
const AlertDialogCountdown({super.key});
|
|
|
|
@override
|
|
State<AlertDialogCountdown> createState() => _AlertDialogCountdownState();
|
|
}
|
|
|
|
class _AlertDialogCountdownState extends State<AlertDialogCountdown> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Row(
|
|
children: [
|
|
|
|
],
|
|
);
|
|
}
|
|
}
|