- Product: Kate Lock
- Design: Nikitha Kumar
- Engineering: Nolan Yee & Ryan Zhou
College students at UT Austin struggle to navigate campus because current navigation tools overlook factors such as shade, crowd density, construction, safety, and informal shortcuts. As a result, students rely on word of mouth and trial-and-error to discover alternative routes, leading students, especially newer ones, being unaware of faster or safer routes throughout campus.
-
Install Flutter
- macOS (using Homebrew):
brew install --cask flutter
- Manual installation: Follow the official Flutter installation guide
- macOS (using Homebrew):
-
Install Xcode (for iOS/macOS development)
- Download from the Mac App Store
- After installation, open Xcode to accept the license agreement
- Install Command Line Tools:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer sudo xcodebuild -runFirstLaunch
-
Verify Flutter Installation
flutter doctor
This will check your environment and show what needs to be configured.
-
Clone the repository
git clone <repository-url> cd frontend
-
Install dependencies
flutter pub get
-
Run the app
-
On Chrome (Web):
flutter run -d chrome
-
On macOS:
flutter run -d macos
-
On iOS Simulator:
flutter run -d ios
-
List all available devices:
flutter devices
-