Skip to content

Instantly share code, notes, and snippets.

@codetricity
Created November 9, 2021 18:27
Show Gist options
  • Save codetricity/5c81aa6f98e58831f7d3293fa697a320 to your computer and use it in GitHub Desktop.
Save codetricity/5c81aa6f98e58831f7d3293fa697a320 to your computer and use it in GitHub Desktop.
Simple template for Flutter App
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