Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
flutter_boost_1.22.4
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李增强
flutter_boost_1.22.4
Commits
f8d2f654
Commit
f8d2f654
authored
Jul 04, 2019
by
Jidong Chen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1, more import problems.
2, 0.0.419
parent
e6a5a120
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
74 additions
and
44 deletions
+74
-44
example/ios/Podfile.lock
example/ios/Podfile.lock
+4
-4
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_closePage.h
.../NavigationService/handlers/NavigationService_closePage.h
+2
-2
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_flutterCanPop.h
...igationService/handlers/NavigationService_flutterCanPop.h
+24
-11
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_flutterCanPop.mm
...gationService/handlers/NavigationService_flutterCanPop.mm
+23
-7
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_onFlutterPageResult.h
...nService/handlers/NavigationService_onFlutterPageResult.h
+2
-2
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_onFlutterPageResult.mm
...Service/handlers/NavigationService_onFlutterPageResult.mm
+1
-1
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_onShownContainerChanged.h
...vice/handlers/NavigationService_onShownContainerChanged.h
+4
-3
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_onShownContainerChanged.mm
...ice/handlers/NavigationService_onShownContainerChanged.mm
+1
-1
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_openPage.h
...d/NavigationService/handlers/NavigationService_openPage.h
+3
-3
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_openPage.mm
.../NavigationService/handlers/NavigationService_openPage.mm
+2
-2
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_pageOnStart.h
...avigationService/handlers/NavigationService_pageOnStart.h
+3
-3
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_pageOnStart.mm
...vigationService/handlers/NavigationService_pageOnStart.mm
+1
-1
ios/Classes/Messaging/Generated/NavigationService/service/Service_NavigationService.h
...ted/NavigationService/service/Service_NavigationService.h
+1
-1
ios/Classes/Messaging/Generated/NavigationService/service/Service_NavigationService.mm
...ed/NavigationService/service/Service_NavigationService.mm
+2
-2
pubspec.yaml
pubspec.yaml
+1
-1
No files found.
example/ios/Podfile.lock
View file @
f8d2f654
...
...
@@ -8,16 +8,16 @@ PODS:
DEPENDENCIES:
- Flutter (from `.symlinks/flutter/ios`)
- flutter_boost (from `/Users/
zhongchengguo/Desktop
/flutter_boost/ios`)
- xservice_kit (from `/Users/
zhongchengguo/.pub-cache/hosted/pub.flutter-io.cn
/xservice_kit-0.0.29/ios`)
- flutter_boost (from `/Users/
jidong/Documents/projects/Flutter
/flutter_boost/ios`)
- xservice_kit (from `/Users/
jidong/.pub-cache/hosted/pub.dartlang.org
/xservice_kit-0.0.29/ios`)
EXTERNAL SOURCES:
Flutter:
:path: ".symlinks/flutter/ios"
flutter_boost:
:path: "/Users/
zhongchengguo/Desktop
/flutter_boost/ios"
:path: "/Users/
jidong/Documents/projects/Flutter
/flutter_boost/ios"
xservice_kit:
:path: "/Users/
zhongchengguo/.pub-cache/hosted/pub.flutter-io.cn
/xservice_kit-0.0.29/ios"
:path: "/Users/
jidong/.pub-cache/hosted/pub.dartlang.org
/xservice_kit-0.0.29/ios"
SPEC CHECKSUMS:
Flutter: 9d0fac939486c9aba2809b7982dfdbb47a7b0296
...
...
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_closePage.h
View file @
f8d2f654
...
...
@@ -23,6 +23,6 @@
*/
// Generated by AIOCodeGen do not edit!
#import "FlutterServiceCallHandler.h"
#import <xservice_kit/FlutterServiceCallHandler.h>
@interface
NavigationService_closePage
:
FlutterServiceCallHandler
@end
\ No newline at end of file
@end
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_flutterCanPop.h
View file @
f8d2f654
//
// NavigationService_canPop.h
// flutter_boost
//
// Created by ZhongCheng Guo on 2019/6/5.
//
#import "FlutterServiceCallHandler.h"
/*
* The MIT License (MIT)
*
* Copyright (c) 2019 Alibaba Group
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#import <xservice_kit/FlutterServiceCallHandler.h>
NS_ASSUME_NONNULL_BEGIN
@interface
NavigationService_flutterCanPop
:
FlutterServiceCallHandler
@end
NS_ASSUME_NONNULL_END
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_flutterCanPop.mm
View file @
f8d2f654
//
// NavigationService_canPop.m
// flutter_boost
//
// Created by ZhongCheng Guo on 2019/6/5.
//
/*
* The MIT License (MIT)
*
* Copyright (c) 2019 Alibaba Group
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#import "NavigationService_flutterCanPop.h"
#import <xservice_kit/ServiceGateway.h>
#import "FLBFlutterApplication.h"
...
...
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_onFlutterPageResult.h
View file @
f8d2f654
...
...
@@ -23,6 +23,6 @@
*/
// Generated by AIOCodeGen do not edit!
#import "FlutterServiceCallHandler.h"
#import <xservice_kit/FlutterServiceCallHandler.h>
@interface
NavigationService_onFlutterPageResult
:
FlutterServiceCallHandler
@end
\ No newline at end of file
@end
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_onFlutterPageResult.mm
View file @
f8d2f654
...
...
@@ -25,7 +25,7 @@
//Generated by AIOCodeGen.
#import <xservice_kit/ServiceGateway.h>
#import "NavigationService_onFlutterPageResult.h"
#import "NavigationService_onFlutterPageResult.h"
#import "FlutterBoost.h"
@implementation
NavigationService_onFlutterPageResult
...
...
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_onShownContainerChanged.h
View file @
f8d2f654
...
...
@@ -23,6 +23,7 @@
*/
// Generated by AIOCodeGen do not edit!
#import "FlutterServiceCallHandler.h"
@interface
NavigationService_onShownContainerChanged
:
FlutterServiceCallHandler
@end
\ No newline at end of file
#import <xservice_kit/FlutterServiceCallHandler.h>
@interface
NavigationService_onShownContainerChanged
:
FlutterServiceCallHandler
@end
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_onShownContainerChanged.mm
View file @
f8d2f654
...
...
@@ -25,7 +25,7 @@
//Generated by AIOCodeGen.
#import <xservice_kit/ServiceGateway.h>
#import "NavigationService_onShownContainerChanged.h"
#import "NavigationService_onShownContainerChanged.h"
@implementation
NavigationService_onShownContainerChanged
...
...
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_openPage.h
View file @
f8d2f654
...
...
@@ -23,6 +23,6 @@
*/
// Generated by AIOCodeGen do not edit!
#import "FlutterServiceCallHandler.h"
@interface
NavigationService_openPage
:
FlutterServiceCallHandler
@end
\ No newline at end of file
#import <xservice_kit/FlutterServiceCallHandler.h>
@interface
NavigationService_openPage
:
FlutterServiceCallHandler
@end
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_openPage.mm
View file @
f8d2f654
...
...
@@ -25,8 +25,8 @@
//Generated by AIOCodeGen.
#import <xservice_kit/ServiceGateway.h>
#import "NavigationService_openPage.h"
#import "FLBFlutterApplication.h"
#import "NavigationService_openPage.h"
#import "FLBFlutterApplication.h"
#import "FlutterBoost.h"
#import "Service_NavigationService.h"
...
...
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_pageOnStart.h
View file @
f8d2f654
...
...
@@ -23,6 +23,6 @@
*/
// Generated by AIOCodeGen do not edit!
#import "FlutterServiceCallHandler.h"
@interface
NavigationService_pageOnStart
:
FlutterServiceCallHandler
@end
#import <xservice_kit/FlutterServiceCallHandler.h>
@interface
NavigationService_pageOnStart
:
FlutterServiceCallHandler
@end
ios/Classes/Messaging/Generated/NavigationService/handlers/NavigationService_pageOnStart.mm
View file @
f8d2f654
...
...
@@ -26,7 +26,7 @@
#import <xservice_kit/ServiceGateway.h>
#import "NavigationService_pageOnStart.h"
#import "FLBFlutterApplication.h"
#import "FLBFlutterApplication.h"
#import "FlutterBoostConfig.h"
@implementation
NavigationService_pageOnStart
...
...
ios/Classes/Messaging/Generated/NavigationService/service/Service_NavigationService.h
View file @
f8d2f654
...
...
@@ -23,7 +23,7 @@
*/
//Generated by AIOCodeGen do not edit!
#import "FlutterServiceTemplate.h"
#import <xservice_kit/FlutterServiceTemplate.h>
@interface
Service_NavigationService
:
NSObject
+
(
FlutterServiceTemplate
*
)
service
;
...
...
ios/Classes/Messaging/Generated/NavigationService/service/Service_NavigationService.mm
View file @
f8d2f654
...
...
@@ -24,9 +24,9 @@
//Generated by AIOCodeGen. Do not edit!
#import "Service_NavigationService.h"
#import "Service_NavigationService.h"
#import <xservice_kit/ServiceGateway.h>
#import "FlutterServiceTemplate.h"
#import <xservice_kit/FlutterServiceTemplate.h>
@implementation
Service_NavigationService
...
...
pubspec.yaml
View file @
f8d2f654
name
:
flutter_boost
description
:
A next-generation Flutter-Native hybrid solution. FlutterBoost is a Flutter plugin which enables hybrid integration of Flutter for your existing native apps with minimum efforts.
version
:
0.0.41
8
version
:
0.0.41
9
author
:
Alibaba Xianyu
homepage
:
https://github.com/alibaba/flutter_boost
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment