Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
gm_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
林生雨
gm_flutter
Commits
9d068e66
Commit
9d068e66
authored
Jul 07, 2020
by
林生雨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
daa11045
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
33 deletions
+42
-33
LevelTwoPage.dart
lib/ClueModel/page/levelTwo/LevelTwoPage.dart
+42
-33
No files found.
lib/ClueModel/page/levelTwo/LevelTwoPage.dart
View file @
9d068e66
...
...
@@ -6,6 +6,7 @@ import 'dart:async';
import
'dart:math'
;
import
'dart:ui'
;
import
'package:cached_network_image/cached_network_image.dart'
;
import
'package:extended_nested_scroll_view/extended_nested_scroll_view.dart'
as
extend
;
import
'package:flutter/cupertino.dart'
;
...
...
@@ -115,7 +116,14 @@ class LevelTwoState extends BaseState<LevelTwoPage>
});
return
completer
.
future
;
},
child:
newHomeWarp
()),
child:
Column
(
children:
<
Widget
>[
Expanded
(
child:
newHomeWarp
(),
),
bottomWidget
(),
],
)),
),
()
{
_model
.
init
(()
{
_initTabBar
();
...
...
@@ -167,7 +175,6 @@ class LevelTwoState extends BaseState<LevelTwoPage>
baseSliverBack
(()
{
Navigator
.
of
(
context
).
pop
();
}),
bottomWidget
()
],
);
}
...
...
@@ -248,7 +255,7 @@ class LevelTwoState extends BaseState<LevelTwoPage>
);
}
return
Padding
(
padding:
EdgeInsets
.
only
(
left:
15.0
,
right:
15.0
,
top:
8.0
),
padding:
EdgeInsets
.
only
(
left:
15.0
,
right:
15.0
,
top:
8.0
,
bottom:
20
),
child:
Row
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
mainAxisSize:
MainAxisSize
.
max
,
...
...
@@ -259,41 +266,43 @@ class LevelTwoState extends BaseState<LevelTwoPage>
decoration:
BoxDecoration
(
borderRadius:
BorderRadius
.
circular
(
17
),
border:
Border
.
all
(
color:
Color
(
0xffF9F8FB
),
width:
1
)),
child:
Image
.
network
(
_model
.
planoverItem
.
banner
.
imageUrl
,
child:
CachedNetworkImage
(
imageUrl:
_model
.
planoverItem
.
banner
.
imageUrl
,
width:
86
,
height:
86
,
fit:
BoxFit
.
cover
,
),
)),
Padding
(
padding:
EdgeInsets
.
only
(
left:
12
,
top:
5
),
child:
Column
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
mainAxisSize:
MainAxisSize
.
max
,
children:
<
Widget
>[
Text
(
_model
.
planoverItem
.
name
,
style:
TextStyle
(
color:
Color
(
0xff333333
),
fontSize:
15
,
fontWeight:
FontWeight
.
bold
)),
Padding
(
padding:
EdgeInsets
.
only
(
top:
5
)),
Row
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
verticalDirection:
VerticalDirection
.
up
,
children:
<
Widget
>[
Text
(
'指导价:'
,
style:
TextStyle
(
color:
Color
(
0xff999999
),
fontSize:
12
)),
Text
(
'¥'
+
_model
.
planoverItem
.
guidePrice
,
style:
TextStyle
(
color:
Color
(
0xffFF5963
),
fontSize:
12
),
)
],
)
],
)),
Expanded
(
child:
Padding
(
padding:
EdgeInsets
.
only
(
left:
12
,
top:
5
),
child:
Column
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
mainAxisSize:
MainAxisSize
.
max
,
children:
<
Widget
>[
Text
(
_model
.
planoverItem
.
name
,
style:
TextStyle
(
color:
Color
(
0xff333333
),
fontSize:
15
,
fontWeight:
FontWeight
.
bold
)),
Padding
(
padding:
EdgeInsets
.
only
(
top:
5
)),
Row
(
crossAxisAlignment:
CrossAxisAlignment
.
start
,
verticalDirection:
VerticalDirection
.
up
,
children:
<
Widget
>[
Text
(
'指导价:'
,
style:
TextStyle
(
color:
Color
(
0xff999999
),
fontSize:
12
)),
Text
(
'¥'
+
_model
.
planoverItem
.
guidePrice
,
style:
TextStyle
(
color:
Color
(
0xffFF5963
),
fontSize:
12
),
)
],
)
],
)),
)
],
),
);
...
...
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