Skip to content

Commit 7b61f8e

Browse files
committed
Implement a localization model
1 parent 1170038 commit 7b61f8e

41 files changed

Lines changed: 574 additions & 1529 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 72 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,78 @@
11
.DS_Store
2-
.dart_tool/
2+
.atom/
3+
.idea/
4+
.vscode/*
5+
.melos_tool/*
6+
!.vscode/tasks.json
7+
!.vscode/settings.json
38

49
.packages
510
.pub/
11+
.dart_tool/
12+
pubspec.lock
13+
pubspec_overrides.yaml
14+
flutter_export_environment.sh
15+
16+
examples/all_plugins/pubspec.yaml
17+
18+
Podfile.lock
19+
Pods/
20+
.symlinks/
21+
**/Flutter/ephemeral/
22+
**/Flutter/Flutter.podspec
23+
**/Flutter/App.framework/
24+
**/Flutter/Flutter.framework/
25+
**/Flutter/Generated.xcconfig
26+
**/Flutter/flutter_assets/
27+
ServiceDefinitions.json
28+
xcuserdata/
29+
30+
local.properties
31+
keystore.properties
32+
.gradle/
33+
gradlew
34+
gradlew.bat
35+
gradle-wrapper.jar
36+
*.iml
37+
38+
GeneratedPluginRegistrant.h
39+
GeneratedPluginRegistrant.m
40+
GeneratedPluginRegistrant.java
41+
GeneratedPluginRegistrant.swift
42+
generated_plugin_registrant.dart
643

744
build/
45+
.flutter-plugins
46+
.flutter-plugins-dependencies
47+
48+
.project
49+
.classpath
50+
.settings
51+
.last_build_id
52+
53+
# Docs
54+
55+
# Dependencies
56+
node_modules
57+
58+
# Production
59+
website/build
60+
61+
# Generated files
62+
.docusaurus
63+
.cache-loader
64+
65+
# Misc
66+
.env.local
67+
.env.development.local
68+
.env.test.local
69+
.env.production.local
70+
71+
npm-debug.log*
72+
yarn-debug.log*
73+
yarn-error.log*
74+
75+
firebase-debug.log
76+
firestore-debug.log
77+
database-debug.log
78+
ui-debug.log

.idea/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)