This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:firebase_auth/firebase_auth.dart'; | |
| import 'package:google_sign_in/google_sign_in.dart'; | |
| import 'dart:async'; | |
| class PersonData { | |
| String name = ''; | |
| String phoneNumber = ''; | |
| String email = ''; | |
| String password = ''; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class SimpleTab extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| textStyle() { | |
| return new TextStyle(color: Colors.white, fontSize: 30.0); | |
| } | |
| return new DefaultTabController( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class MyHomePage extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return new Scaffold( | |
| floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked, | |
| floatingActionButton: FloatingActionButton( | |
| backgroundColor: Colors.black, | |
| child: const Icon(Icons.add), | |
| onPressed: () {}, | |
| ), |