Skip to content

Instantly share code, notes, and snippets.

@aaronksaunders
Created May 30, 2019 23:46
Show Gist options
  • Select an option

  • Save aaronksaunders/0f10a17bbce113d590fd261f18df3ef6 to your computer and use it in GitHub Desktop.

Select an option

Save aaronksaunders/0f10a17bbce113d590fd261f18df3ef6 to your computer and use it in GitHub Desktop.
Markdium-Simple Firebase Login Flow in Flutter
import 'package:flutter/material.dart';
class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Home Flutter Firebase"),
//actions: <Widget>[LogoutButton()],
),
body: Center(
child: Text('Home Page Flutter Firebase Content'),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment