Skip to content

Instantly share code, notes, and snippets.

@lucalves
Last active September 26, 2019 02:02
Show Gist options
  • Save lucalves/95c32e7f336f2681047ab561eadae3f0 to your computer and use it in GitHub Desktop.
Save lucalves/95c32e7f336f2681047ab561eadae3f0 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
import 'package:stack_example/stack_flutter.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Stack',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: StackFlutter(),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment