This repository has been archived by the owner on Apr 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from tiki/feat/trail-v3
Feat: add idp, payable, & receipt wrappers/handlers
- Loading branch information
Showing
96 changed files
with
3,655 additions
and
1,340 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,7 @@ jobs: | |
- name: Setup Flutter | ||
uses: subosito/flutter-action@v1 | ||
with: | ||
flutter-version: '3.7.7' | ||
flutter-version: '3.10.5' | ||
|
||
- name: Update docs | ||
run: dart doc | ||
|
@@ -62,6 +62,5 @@ jobs: | |
git config --global user.email "[email protected]" | ||
git config --global user.name "GH Action" | ||
git add pubspec.yaml | ||
git add doc/ | ||
git commit -m 'version bump' | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include: package:flutter_lints/flutter.yaml | ||
|
||
# Additional information about this file can be found at | ||
# https://dart.dev/guides/language/analysis-options | ||
linter: | ||
rules: | ||
- prefer_relative_imports |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
/* | ||
* Copyright (c) TIKI Inc. | ||
* MIT license. See LICENSE file in root directory. | ||
* Copyright (c) TIKI Inc. | ||
* MIT license. See LICENSE file in root directory. | ||
*/ | ||
|
||
/// Not used. Required by Dart Runtime for native implementations | ||
///@nodoc | ||
import 'package:flutter/material.dart'; | ||
|
||
import 'src/platform_channel/platform_channel.dart'; | ||
import 'src/channel.dart'; | ||
|
||
export 'package:tiki_sdk_dart/tiki_sdk.dart'; | ||
|
||
/// The Dart entry point for Platform Channels integration. | ||
void main() { | ||
WidgetsFlutterBinding.ensureInitialized(); | ||
PlatformChannel(); | ||
Channel(); | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.