Skip to content

Instantly share code, notes, and snippets.

@triyono777
Created April 5, 2022 12:38
Show Gist options
  • Save triyono777/48ff9ba7cc9ecce579d9343e9a655d5c to your computer and use it in GitHub Desktop.
Save triyono777/48ff9ba7cc9ecce579d9343e9a655d5c to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'welcome_screen.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Hello World',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: WelcomeScreen(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment