Files
syncrow-app/lib/features/scene/widgets/alert_dialog_countdown.dart
2024-06-26 02:18:15 +03:00

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: [
],
);
}
}