Skip to content

Instantly share code, notes, and snippets.

@egealpay
Created February 27, 2019 10:24
Show Gist options
  • Save egealpay/85f7898977e2046d7aab6cbd7200b521 to your computer and use it in GitHub Desktop.
Save egealpay/85f7898977e2046d7aab6cbd7200b521 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:flutter_course/text_control.dart';
main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text("Basics Assignment"),
),
body: TextControl()),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment