Skip to content

Commit d9b2c16

Browse files
committed
chore: setup repository
0 parents  commit d9b2c16

File tree

222 files changed

+54699
-0
lines changed

Some content is hidden

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

222 files changed

+54699
-0
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## Expected Behavior
2+
3+
4+
## Actual Behavior
5+
6+
7+
## Steps to Reproduce the Problem
8+
9+
1.
10+
1.
11+
1.
12+
13+
## Specifications
14+
15+
- Version:
16+
- Platform:

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Fixes #<issue_number_goes_here>
2+
3+
> It's a good idea to open an issue first for discussion.
4+
5+
- [ ] Tests pass
6+
- [ ] Appropriate changes to documentation are included in the PR

.github/blunderbuss.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
assign_issues:
2+
- ArturoSalazarB16
3+
- caio1985
4+
assign_prs:
5+
- ArturoSalazarB16
6+
- caio1985

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.gitignore

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Miscellaneous
2+
.DS_Store
3+
.atom/
4+
.vscode/*
5+
.buildlog/
6+
.history
7+
.melos_tool/*
8+
9+
# IntelliJ related
10+
*.iml
11+
*.ipr
12+
*.iws
13+
.idea/
14+
15+
# vscode related
16+
.vscode/*
17+
!.vscode/tasks.json
18+
!.vscode/settings.json
19+
20+
# Flutter/Dart/Pub related
21+
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
22+
pubspec.lock
23+
pubspec_overrides.yaml
24+
.dart_tool/
25+
.packages
26+
build/
27+
.flutter-plugins*
28+
.pub-cache/
29+
.pub/
30+
31+
# Dart Docs
32+
**/doc/api/
33+
34+
# iOS
35+
Podfile.lock
36+
Pods/
37+
.symlinks/
38+
**/Flutter/ephemeral/
39+
**/Flutter/Flutter.podspec
40+
**/Flutter/App.framework/
41+
**/Flutter/Flutter.framework/
42+
**/Flutter/Generated.xcconfig
43+
**/Flutter/flutter_assets/
44+
ServiceDefinitions.json
45+
xcuserdata/
46+
.last_build_id
47+
48+
# Android
49+
local.properties
50+
keystore.properties
51+
.gradle/
52+
gradlew
53+
gradlew.bat
54+
gradle-wrapper.jar
55+
56+
.project
57+
.classpath
58+
.settings
59+
60+
# Generated files on example apps
61+
flutter_export_environment.sh
62+
GeneratedPluginRegistrant.*
63+
generated_plugin_registrant.*
64+
65+
# Patrol generated test files
66+
test_bundle.dart

.swiftformat

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
--indent 2
2+
--maxwidth 100
3+
--wrapparameters afterfirst
4+
--disable sortedImports,unusedArguments,wrapMultilineStatementBraces
5+
--exclude Pods,**/MainFlutterWindow.swift,**/AppDelegate.swift,**/.symlinks/**,**/example/build/**
6+
--swiftversion 5.7

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## 0.1.0-pre1
2+
3+
This is the first pre-release of the Google Maps Navigation package for Flutter. It is an early look at the package and is intended for testing and feedback collection. The functionalities and APIs in this version are subject to change.
4+
5+
**Key Features:**
6+
- Integration of Google Maps Navigation with Flutter.
7+
- Support for basic map and navigation functionalities.
8+
9+
**Known Issues:**
10+
- On Android, a slight delay in rendering markers, polygons, circles, and polylines.
11+
12+
**Notes:**
13+
- This version demonstrates the core capabilities of the package and serves as a basis for community feedback and further development.
14+
- Users are encouraged to report bugs and suggest improvements to enhance the package's stability and functionality.

0 commit comments

Comments
 (0)