smartfarming-mobile/kebun_pintar/lib/features/splash/view/splash_screen.dart

16 lines
341 B
Dart
Raw Normal View History

2024-09-05 03:46:07 +00:00
import 'package:flutter/material.dart';
class SplashScreen extends StatefulWidget {
const SplashScreen({super.key});
@override
State<SplashScreen> createState() => _SplashScreenState();
}
class _SplashScreenState extends State<SplashScreen> {
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}