Skip to content

Instantly share code, notes, and snippets.

@sbis04
Created July 12, 2019 08:39
Show Gist options
  • Select an option

  • Save sbis04/63238f05d03d0f03ea77872ced6da98a to your computer and use it in GitHub Desktop.

Select an option

Save sbis04/63238f05d03d0f03ea77872ced6da98a to your computer and use it in GitHub Desktop.
login_demo_3
import 'package:flutter/material.dart';
class FirstScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(color: Colors.blue[100]),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment