Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated main.dart file #39

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update main.dart
  • Loading branch information
raza4399 authored Oct 2, 2020
commit 18be2faab6f5f70b49f23611a27391593a4d7b23
24 changes: 20 additions & 4 deletions main.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
void main() {
print("Flutter is amazing");
print(
"Flutter Example apps repo is the collections of awesome apps built with flutter");
import 'package:flutter/material.dart';
void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Center(
Text(
"updated app",
style: TextStyle(
color: Colors.red,
fontSize: 18,
fontWeight: FontWeight.bold,
),
),
),
);
}
}