Skip to content

Instantly share code, notes, and snippets.

@zafarivaev
Created March 7, 2020 07:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zafarivaev/e73f12e05979f23c1c7adea63df68a7f to your computer and use it in GitHub Desktop.
Save zafarivaev/e73f12e05979f23c1c7adea63df68a7f to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
@override
Widget build(BuildContext context) {
return Container();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment