Created
November 9, 2021 18:27
-
-
Save codetricity/5c81aa6f98e58831f7d3293fa697a320 to your computer and use it in GitHub Desktop.
Simple template for Flutter App
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'; | |
/// simple template for Flutter app | |
void main() { | |
runApp(const AtkTutorial()); | |
} | |
class AtkTutorial extends StatelessWidget { | |
const AtkTutorial({Key? key}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
home: Scaffold( | |
body: Container(), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment