Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 42 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,11 @@ migrate_working_dir/
.flutter-plugins-dependencies
.pub-cache/
.pub/
/build/
./coverage*
build/
**/build/
coverage/
.coverage*

# Symbolication related
app.*.symbols

Expand All @@ -42,3 +45,40 @@ app.*.map.json
/android/app/debug
/android/app/profile
/android/app/release

# Android related
**/android/**/gradle-wrapper.jar
.gradle/
**/android/captures/
**/android/gradlew
**/android/gradlew.bat
**/android/local.properties
**/android/**/GeneratedPluginRegistrant.java
**/android/.cxx/

# iOS/macOS related
**/ios/Pods/
**/macos/Pods/
**/ios/.symlinks/
**/macos/.symlinks/
**/xcuserdata/
**/DerivedData/
*.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

# Environment files
.env
.env.*
!.env.example

# Generated files
*.generated.dart
*.g.dart
*.freezed.dart
*.mocks.dart

# FVM (Flutter Version Management)
.fvm/flutter_sdk
.fvmrc

# Test related
**/test_driver/*.dart.snapshot
34 changes: 25 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,32 @@
# myapp
# MyApp

A new Flutter project.
A personal Flutter app for managing a book collection. Users can sign in with email or Google, then add, edit, and delete books from their personal library. Also includes a fun word pair generator with the ability to save favorites.

## Getting Started

This project is a starting point for a Flutter application.
### Install Dependencies

A few resources to get you started if this is your first Flutter project:
```bash
flutter pub get
```

- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)
### Run the App

For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.
```bash
flutter run
```

To run on a specific device:

```bash
flutter devices # List available devices
flutter run -d <device-id> # Run on specific device
```

## Useful Commands

```bash
flutter test # Run tests
flutter clean # Clean build artifacts
flutter pub upgrade # Update dependencies
```
Loading