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
16c98ecc
Commit
16c98ecc
authored
Feb 21, 2019
by
ouxiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add layout & animate test
parent
ad8ed82a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
136 additions
and
2 deletions
+136
-2
animationTest.dart
lib/animationTest.dart
+0
-0
layoutTest.dart
lib/layoutTest.dart
+112
-0
main.dart
lib/main.dart
+24
-2
No files found.
lib/animationTest.dart
0 → 100644
View file @
16c98ecc
This diff is collapsed.
Click to expand it.
lib/layoutTest.dart
0 → 100644
View file @
16c98ecc
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
;
class
LayoutTest
extends
StatefulWidget
{
@override
_LayoutTestState
createState
()
=>
_LayoutTestState
();
}
class
_LayoutTestState
extends
State
<
LayoutTest
>
{
@override
Widget
build
(
BuildContext
context
)
{
return
Scaffold
(
appBar:
AppBar
(
title:
Text
(
'Layout Test'
),
),
body:
Container
(
padding:
EdgeInsets
.
all
(
32.0
),
child:
Center
(
child:
Column
(
children:
<
Widget
>[
_renderBoxTest
(),
_containerTestWidget
()
],
),
),
),
);
}
Widget
_renderBoxTest
(
){
return
Container
(
color:
Colors
.
greenAccent
,
constraints:
BoxConstraints
(
maxWidth:
double
.
infinity
,
minWidth:
200.0
,
maxHeight:
200
,
minHeight:
100.0
),
child:
Stingy
(
child:
Container
(
color:
Colors
.
pink
[
200
],
),
),
);
}
// www.baidu.com/img/bd_logo1.png
Widget
_containerTestWidget
(){
return
Container
(
constraints:
BoxConstraints
.
expand
(
height:
Theme
.
of
(
context
).
textTheme
.
display1
.
fontSize
*
1.1
+
200.0
,
),
padding:
const
EdgeInsets
.
all
(
8.0
),
color:
Colors
.
greenAccent
.
shade700
,
alignment:
Alignment
.
bottomCenter
,
child:
Text
(
'Hello World'
,
style:
Theme
.
of
(
context
).
textTheme
.
display1
.
copyWith
(
color:
Colors
.
orange
[
200
])),
foregroundDecoration:
BoxDecoration
(
image:
DecorationImage
(
image:
NetworkImage
(
'https://www.example.com/images/frame.png'
),
centerSlice:
Rect
.
fromLTRB
(
270.0
,
180.0
,
1360.0
,
730.0
),
),
),
transform:
Matrix4
.
rotationZ
(
0.1
),
);
}
}
class
Stingy
extends
SingleChildRenderObjectWidget
{
Stingy
({
Widget
child
})
:
super
(
child:
child
);
@override
RenderObject
createRenderObject
(
BuildContext
context
)
{
// TODO: implement createRenderObject
return
RenderStingy
();
}
}
class
RenderStingy
extends
RenderShiftedBox
{
RenderStingy
()
:
super
(
null
);
// 绘制方法
@override
void
paint
(
PaintingContext
context
,
Offset
offset
)
{
// TODO: implement paint
super
.
paint
(
context
,
offset
);
}
// 布局方法
@override
void
performLayout
()
{
// 布局 child 确定 child 的 size
child
.
layout
(
BoxConstraints
(
minHeight:
0.0
,
maxHeight:
constraints
.
minHeight
,
minWidth:
0.0
,
maxWidth:
constraints
.
minWidth
),
parentUsesSize:
true
);
print
(
'constraints:
$constraints
'
);
// child 的 Offset
final
BoxParentData
childParentData
=
child
.
parentData
;
childParentData
.
offset
=
Offset
(
constraints
.
maxWidth
-
child
.
size
.
width
,
constraints
.
maxHeight
-
child
.
size
.
height
);
print
(
'childParentData:
$childParentData
'
);
// 确定自己(父节点)的大小,并重绘父节点。不重设,不能触发重绘,例如在热重载的情景中,重设container.maxHeight,无效
size
=
Size
(
constraints
.
maxWidth
,
constraints
.
maxHeight
);
print
(
'size:
$size
'
);
}
}
lib/main.dart
View file @
16c98ecc
import
'package:flutter/material.dart'
;
import
'battery.dart'
;
import
'assetsChannel.dart'
;
import
'layoutTest.dart'
;
import
'animationTest.dart'
;
void
main
(
)
=>
runApp
(
MyApp
());
...
...
@@ -16,6 +18,8 @@ class MyApp extends StatelessWidget {
routes:
{
"/channeltest"
:
batteryChannelPage
,
"/assetschannel"
:
assetsChannelPage
,
"/layouttest"
:
layoutTestPage
,
"/animationtest"
:
animationTestPage
,
},
);
}
...
...
@@ -27,6 +31,14 @@ class MyApp extends StatelessWidget {
Widget
assetsChannelPage
(
BuildContext
context
)
{
return
AssestPlatformChannel
();
}
Widget
layoutTestPage
(
BuildContext
context
)
{
return
LayoutTest
();
}
Widget
animationTestPage
(
BuildContext
context
)
{
return
AnimationPage
();
}
}
class
MyHomePage
extends
StatefulWidget
{
...
...
@@ -66,14 +78,24 @@ class _MyHomePageState extends State<MyHomePage> {
),
FlatButton
(
child:
Text
(
'channel test'
),
color:
Colors
.
green
,
color:
Colors
.
green
Accent
,
onPressed:
(){
Navigator
.
pushNamed
(
context
,
"/channeltest"
);},
),
FlatButton
(
child:
Text
(
'assets test'
),
color:
Colors
.
green
,
color:
Colors
.
green
Accent
,
onPressed:
(){
Navigator
.
pushNamed
(
context
,
"/assetschannel"
);},
),
FlatButton
(
child:
Text
(
'layout test'
),
color:
Colors
.
greenAccent
,
onPressed:
(){
Navigator
.
pushNamed
(
context
,
"/layouttest"
);},
),
FlatButton
(
child:
Text
(
'animation test'
),
color:
Colors
.
greenAccent
,
onPressed:
(){
Navigator
.
pushNamed
(
context
,
"/animationtest"
);},
),
],
),
),
...
...
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