Skip to content

Instantly share code, notes, and snippets.

@LutfiGarzon
Created February 18, 2021 20:46
Show Gist options
  • Save LutfiGarzon/320357209657639693cd6cd7806c3fc8 to your computer and use it in GitHub Desktop.
Save LutfiGarzon/320357209657639693cd6cd7806c3fc8 to your computer and use it in GitHub Desktop.
Hello Gist!
import 'package:flutter/material.dart';
void main() {
runApp(App());
}
class PokedexApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'App Header',
home: Scaffold(...);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment