Dark mode em upload pdf

This commit is contained in:
2026-05-18 23:05:33 +01:00
parent 7f12f3eb1f
commit 8043ee42fe
19 changed files with 77 additions and 73 deletions

View File

@@ -13,7 +13,7 @@ This document outlines the complete Flutter project structure for the AI Study A
## 📁 ROOT DIRECTORY STRUCTURE
```
teachit/
learn_it/
├── android/ # Android-specific files
├── ios/ # iOS-specific files
├── web/ # Web-specific files
@@ -381,7 +381,7 @@ lib/
### pubspec.yaml
```yaml
name: teachit
name: learn_it
description: AI Study Assistant - Educational Intelligence Platform
version: 1.0.0+1
@@ -551,7 +551,7 @@ linter:
**android/app/build.gradle**
```gradle
android {
namespace 'com.example.teachit'
namespace 'com.example.learnit'
compileSdkVersion flutter.compileSdkVersion
compileOptions {
@@ -564,7 +564,7 @@ android {
}
defaultConfig {
applicationId "com.example.teachit"
applicationId "com.example.learnit"
minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
@@ -596,9 +596,9 @@ dependencies {
**ios/Runner/Info.plist**
```xml
<key>CFBundleDisplayName</key>
<string>TeachIt</string>
<string>Learn It</string>
<key>CFBundleIdentifier</key>
<string>com.example.teachit</string>
<string>com.example.learnit</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>UISupportedInterfaceOrientations</key>
@@ -1063,7 +1063,7 @@ class Environment {
static const bool isProductionMode = kReleaseMode;
static const String apiBaseUrl = isDebugMode
? 'http://localhost:8080'
: 'https://api.teachit.app';
: 'https://api.learnit.app';
}
```