Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
gmalpha_flutter
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mobile
gmalpha_flutter
Commits
ac5fbef3
Commit
ac5fbef3
authored
Oct 10, 2019
by
林生雨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
a554919b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
7 deletions
+14
-7
flutter.sh
flutter.sh
+5
-0
gengmei_flutter_plugin
ios/.symlinks/plugins/gengmei_flutter_plugin
+2
-2
App
ios/Flutter/App.framework/App
+0
-0
project.pbxproj
ios/Pods/Pods.xcodeproj/project.pbxproj
+0
-0
AlbumModel.dart
lib/AlbumModel/page/album/AlbumModel.dart
+3
-2
AlbumPage.dart
lib/AlbumModel/page/album/AlbumPage.dart
+1
-0
pubspec.lock
pubspec.lock
+2
-2
pubspec.yaml
pubspec.yaml
+1
-1
No files found.
flutter.sh
View file @
ac5fbef3
...
...
@@ -141,7 +141,12 @@ function ios(){
cd
${
projectDir
}
flutter build ios
--release
--no-codesign
cp
-r
/Users/apple/lsy/gmalpha_flutter/ios/Flutter/App.framework /Users/apple/lsy/aar_update/ios
${
message
}
/
rm
-rf
/Users/apple/lsy/GMAlpha/GMAlpha/Classes/APP/flutter_project/App.framework
rm
-rf
/Users/apple/lsy/GMAlpha/GMAlpha/Classes/APP/flutter_project/Flutter.framework
rm
-rf
/Users/apple/lsy/GMAlpha/GMAlpha/Classes/APP/flutter_project/gengmei_flutter_plugin.framework
cp
-r
/Users/apple/lsy/gmalpha_flutter/ios/Flutter/App.framework /Users/apple/lsy/GMAlpha/GMAlpha/Classes/APP/flutter_project
cp
-r
/Users/apple/lsy/gmalpha_flutter/ios/Flutter/Flutter.framework /Users/apple/lsy/GMAlpha/GMAlpha/Classes/APP/flutter_project
cp
-r
/Users/apple/lsy/gmalpha_flutter/build/ios/Release-iphoneos/gengmei_flutter_plugin/gengmei_flutter_plugin.framework /Users/apple/lsy/GMAlpha/GMAlpha/Classes/APP/flutter_project
}
function
ios_publish
(){
...
...
ios/.symlinks/plugins/gengmei_flutter_plugin
View file @
ac5fbef3
/Users/apple/Downloads/flutter/.pub-cache/git/flutter_plugin-c26d6a260da11c0bd3ce85ea80e81bc5a4ee837b
\ No newline at end of file
/Users/apple/Downloads/flutter/.pub-cache/git/flutter_plugin-25c02c805d4c3bcb2f90d63b21775a4aceb146aa
\ No newline at end of file
ios/Flutter/App.framework/App
View file @
ac5fbef3
No preview for this file type
ios/Pods/Pods.xcodeproj/project.pbxproj
View file @
ac5fbef3
This diff is collapsed.
Click to expand it.
lib/AlbumModel/page/album/AlbumModel.dart
View file @
ac5fbef3
...
...
@@ -71,7 +71,7 @@ class AlbumModel extends BaseModel {
newPath
!=
null
)
{
itemList
[
i
].
path
=
newPath
;
}
var
realPath
=
map
[
k
][
i
][
"realPath"
]
as
String
;
var
realPath
=
map
[
k
][
i
][
"realPath"
]
as
String
;
if
((
itemList
[
i
].
realPath
==
null
||
itemList
[
i
].
realPath
.
isEmpty
)
&&
realPath
!=
null
)
{
itemList
[
i
].
realPath
=
realPath
;
...
...
@@ -113,10 +113,10 @@ class AlbumModel extends BaseModel {
print
(
"VALUE!!!
$key
"
);
if
(
eachValue
!=
null
&&
!
eachValue
.
isEmpty
)
{
if
(
key
==
MainDir
)
{
albumLive
.
notifyView
(
eachValue
);
titleData
.
notifyView
(
MainDirExplain
);
_dirList
.
add
(
DirBean
(
MainDirExplain
,
eachValue
.
length
,
File
(
eachValue
[
0
].
path
)));
albumLive
.
notifyView
(
eachValue
);
}
else
{
_dirList
.
add
(
DirBean
(
key
,
eachValue
.
length
,
File
(
eachValue
[
0
].
path
)));
...
...
@@ -140,6 +140,7 @@ class AlbumModel extends BaseModel {
albumLive
.
dispost
();
dirLive
.
dispost
();
titleData
.
dispost
();
GengmeiFlutterPlugin
.
quitPage
();
}
select
(
int
index
)
{}
...
...
lib/AlbumModel/page/album/AlbumPage.dart
View file @
ac5fbef3
...
...
@@ -108,6 +108,7 @@ class AlbumState extends State<AlbumPage> {
void
dispose
()
{
super
.
dispose
();
_model
.
dispose
();
}
mainView
()
{
...
...
pubspec.lock
View file @
ac5fbef3
...
...
@@ -218,8 +218,8 @@ packages:
dependency: "direct main"
description:
path: "."
ref:
c26d6a260da11c0bd3ce85ea80e81bc5a4ee837b
resolved-ref:
c26d6a260da11c0bd3ce85ea80e81bc5a4ee837b
ref:
"25c02c805d4c3bcb2f90d63b21775a4aceb146aa"
resolved-ref:
"25c02c805d4c3bcb2f90d63b21775a4aceb146aa"
url: "git@git.wanmeizhensuo.com:linshengyu/flutter_plugin.git"
source: git
version: "0.0.735"
...
...
pubspec.yaml
View file @
ac5fbef3
...
...
@@ -34,7 +34,7 @@ dependencies:
gengmei_flutter_plugin
:
git
:
url
:
'
git@git.wanmeizhensuo.com:linshengyu/flutter_plugin.git'
ref
:
"
c26d6a260da11c0bd3ce85ea80e81bc5a4ee837b
"
ref
:
"
25c02c805d4c3bcb2f90d63b21775a4aceb146aa
"
protobuf
:
^0.14.4
grpc
:
^2.1.2
flutter_svg
:
^0.14.1
...
...
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