17 lines
351 B
Dart
17 lines
351 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:isipiringku/pages/splashscreen/splashscreen.dart';
|
|
|
|
void main() {
|
|
runApp(IsiPiringku());
|
|
}
|
|
|
|
class IsiPiringku extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
home: SplashScreen(),
|
|
);
|
|
}
|
|
}
|