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
  • Save LOG-TAG/35f37cdf10b6d2d007d81c8e741fc220 to your computer and use it in GitHub Desktop.
Save LOG-TAG/35f37cdf10b6d2d007d81c8e741fc220 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