Skip to content

Instantly share code, notes, and snippets.

@dewanshrawat15
Created November 20, 2019 13:51
Show Gist options
  • Save dewanshrawat15/291a316533f901f2546a72fea0dd70c4 to your computer and use it in GitHub Desktop.
Save dewanshrawat15/291a316533f901f2546a72fea0dd70c4 to your computer and use it in GitHub Desktop.
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