Created
November 20, 2019 13:51
-
-
Save dewanshrawat15/291a316533f901f2546a72fea0dd70c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main(){ | |
runApp( | |
MaterialApp( | |
debugShowCheckedModeBanner: false, | |
home: HomeScreen(), | |
) | |
); | |
} | |
class HomeScreen extends StatelessWidget{ | |
@override | |
Widget build(BuildContext context){ | |
return Scaffold( | |
appBar: AppBar( | |
title: Text("Dewansh's Portfolio"), | |
), | |
body: Center( | |
child: Text("Hello World"), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment