Advertisement
BlackBoY_

main.dart

Jun 19th, 2022
1,211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.40 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2. import 'package:praktikum_pertemuan_10/login_page.dart';
  3.  
  4. void main() {
  5.   runApp(MyApp());
  6. }
  7.  
  8. class MyApp extends StatefulWidget {
  9.   @override
  10.   State<MyApp> createState() => _MyAppState();
  11. }
  12.  
  13. class _MyAppState extends State<MyApp> {
  14.   @override
  15.   Widget build(BuildContext context) {
  16.     return MaterialApp(
  17.       home: LoginPage(),
  18.     );
  19.   }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement