Skip to content

Instantly share code, notes, and snippets.

@LOG-TAG
Forked from PeterHdd/main.dart
Created April 24, 2020 12:57
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 LOG-TAG/fcc9476ae6b971e81943bcea655a44f0 to your computer and use it in GitHub Desktop.
Save LOG-TAG/fcc9476ae6b971e81943bcea655a44f0 to your computer and use it in GitHub Desktop.
article
import 'package:firebase_database/firebase_database.dart';
import 'package:firebase_test/home.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Pets',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Register Pet'),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment