Skip to content

Instantly share code, notes, and snippets.

@shubie
Created January 20, 2019 08:29
Show Gist options
  • Save shubie/d766fae48defcca2c5c08c7f1e970dc9 to your computer and use it in GitHub Desktop.
Save shubie/d766fae48defcca2c5c08c7f1e970dc9 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
void main() => runApp(new MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Crypto Wallet',
home: CryptoWallet(),
);
}
}
class CryptoWallet extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment