Advertisement
rajath_pai

main

Aug 4th, 2021
1,258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.27 KB | None | 0 0
  1. import 'package:flutter/material.dart';
  2.  
  3. import './MainPage.dart';
  4.  
  5. void main() => runApp(new ExampleApplication());
  6.  
  7. class ExampleApplication extends StatelessWidget {
  8.   @override
  9.   Widget build(BuildContext context) {
  10.     return MaterialApp(home: MainPage());
  11.   }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement