Skip to content

Instantly share code, notes, and snippets.

@roipeker
Last active November 10, 2019 23:30
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 roipeker/69ebc1d216cf5afad841c950121febfb to your computer and use it in GitHub Desktop.
Save roipeker/69ebc1d216cf5afad841c950121febfb to your computer and use it in GitHub Desktop.
b1
import 'package:flutter_web/material.dart';
import 'package:flutter_web_test/flutter_web_test.dart';
import 'package:flutter_web_ui/ui.dart' as ui;
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: MyHome(),
);
}
}
class MyHome extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("Hello")),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment