https://github.com/matshwenyego/brew
This Flutter app provides a straightforward and intuitive login page using Firebase Authentication. It is designed to offer a seamless user experience with a clean and modern interface
https://github.com/matshwenyego/brew
dart firebase-auth firebase-core flutter
Last synced: 2 months ago
JSON representation
This Flutter app provides a straightforward and intuitive login page using Firebase Authentication. It is designed to offer a seamless user experience with a clean and modern interface
- Host: GitHub
- URL: https://github.com/matshwenyego/brew
- Owner: Matshwenyego
- Created: 2024-06-09T15:13:42.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-10T17:48:11.000Z (about 2 years ago)
- Last Synced: 2025-01-30T07:14:23.492Z (over 1 year ago)
- Topics: dart, firebase-auth, firebase-core, flutter
- Language: C++
- Homepage:
- Size: 280 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# brew
# Running Your Flutter App
## Using Visual Studio Code (VS Code)
1. Open the Command Palette by pressing `Ctrl+Shift+P` (or `Cmd+Shift+P` on macOS).
2. Type `Flutter: Select Device` and select the connected device or emulator.
3. Press `F5` or go to `Run > Start Debugging` to run the app. You can also use `Ctrl+F5` (or `Cmd+F5` on macOS) to run without debugging.
## Using Android Studio
1. Ensure the target device is selected in the device dropdown in the toolbar.
2. Click the `Run` button (green play icon) in the toolbar, or press `Shift+F10` to run the app.
1. Open a terminal window.
2. Navigate to your Flutter project directory:
```bash
cd path/to/your/flutter_project
```
## Run the app using
```bash
flutter run
```
## Ensure your device or emulator is connected and recognized by Flutter:
```bash
flutter devices
```
## Using Hot Reload and Hot Restart
# Hot Reload allows you to see changes in your app instantly without restarting it. After making changes to your code, save the file, and the app will reload automatically.
1. In VS Code, press r in the terminal where flutter run is running.
2. In Android Studio, click the Hot Reload button (lightning bolt icon) in the toolbar.
3. In the terminal, press r while flutter run is active.
## Hot Restart
# Hot Restart restarts the app but retains the state. Useful for certain types of changes.
1. In VS Code, press Shift+R in the terminal where flutter run is running.
2. In Android Studio, click the Hot Restart button (circular arrow icon) in the toolbar.
3. In the terminal, press R while flutter run is active.