Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
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
abdullh.alsoleman
Front-End
Commits
fe3aee88
Commit
fe3aee88
authored
9 years ago
by
Hans Muller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added ToolBar.withSizeOffsets()
parent
1b578e9e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
27 deletions
+42
-27
card_collection.dart
examples/widgets/card_collection.dart
+2
-3
dropdown.dart
packages/flutter/lib/src/material/dropdown.dart
+12
-12
scaffold.dart
packages/flutter/lib/src/material/scaffold.dart
+10
-10
tool_bar.dart
packages/flutter/lib/src/material/tool_bar.dart
+18
-2
No files found.
examples/widgets/card_collection.dart
View file @
fe3aee88
...
...
@@ -268,15 +268,14 @@ class CardCollectionState extends State<CardCollection> {
Widget
buildToolBar
()
{
return
new
ToolBar
(
left:
new
IconButton
(
icon:
"navigation/menu"
,
onPressed:
_showDrawer
),
center:
new
Text
(
'Swipe Away'
),
right:
<
Widget
>[
new
Text
(
_dismissDirectionText
(
_dismissDirection
))
],
bottom:
new
Padding
(
padding:
const
EdgeDims
.
only
(
left:
3
2.0
),
padding:
const
EdgeDims
.
only
(
left:
7
2.0
),
child:
new
Align
(
alignment:
const
FractionalOffset
(
0.0
,
0.5
),
child:
new
Text
(
"Remaining items:
${_cardModels.length}
"
)
child:
new
Text
(
'Swipe Away:
${_cardModels.length}
'
)
)
)
);
...
...
This diff is collapsed.
Click to expand it.
packages/flutter/lib/src/material/dropdown.dart
View file @
fe3aee88
...
...
@@ -218,18 +218,18 @@ class DropdownButton<T> extends StatelessComponent {
return
new
GestureDetector
(
child:
new
Container
(
decoration:
new
BoxDecoration
(
border:
_kDropdownUnderline
),
child:
new
IntrinsicWidth
(
child:
new
Row
(<
Widget
>[
new
IndexedStack
(
items
,
key:
indexedStackKey
,
index:
selectedIndex
,
alignment:
const
FractionalOffset
(
0.5
,
0.0
)
),
new
Container
(
child:
new
Icon
(
icon:
'navigation/arrow_drop_down'
,
size:
IconSize
.
s36
),
padding:
const
EdgeDims
.
only
(
top:
6.0
)
)
])
child:
new
Row
(<
Widget
>[
new
IndexedStack
(
items
,
key:
indexedStackKey
,
index:
selectedIndex
,
alignment:
const
FractionalOffset
(
0.5
,
0.0
)
),
new
Container
(
child:
new
Icon
(
icon:
'navigation/arrow_drop_down'
,
size:
IconSize
.
s36
),
padding:
const
EdgeDims
.
only
(
top:
6.0
)
)
],
justifyContent:
FlexJustifyContent
.
collapse
)
),
onTap:
()
{
...
...
This diff is collapsed.
Click to expand it.
packages/flutter/lib/src/material/scaffold.dart
View file @
fe3aee88
...
...
@@ -10,8 +10,8 @@ import 'package:flutter/widgets.dart';
import
'constants.dart'
;
import
'material.dart'
;
const
int
_kToolBarIndex
=
1
;
const
int
_kBodyIndex
=
0
;
const
int
_kToolBarIndex
=
1
;
// This layout has the same effect as putting the toolbar and body in a column
// and making the body flexible. What's different is that in this case the
...
...
@@ -22,18 +22,17 @@ class _ToolBarAndBodyLayout extends MultiChildLayoutDelegate {
assert
(
childCount
==
2
);
final
BoxConstraints
toolBarConstraints
=
constraints
.
loosen
().
tightenWidth
(
size
.
width
);
final
Size
toolBarSize
=
layoutChild
(
_kToolBarIndex
,
toolBarConstraints
);
final
double
topPadding
=
ui
.
window
.
padding
.
top
;
final
double
bodyHeight
=
size
.
height
-
toolBarSize
.
height
-
topPadding
;
final
double
bodyHeight
=
size
.
height
-
toolBarSize
.
height
;
final
BoxConstraints
bodyConstraints
=
toolBarConstraints
.
tightenHeight
(
bodyHeight
);
layoutChild
(
_kBodyIndex
,
bodyConstraints
);
positionChild
(
_kToolBarIndex
,
new
Point
(
0.0
,
topPadding
)
);
positionChild
(
_kBodyIndex
,
new
Point
(
0.0
,
to
pPadding
+
to
olBarSize
.
height
));
positionChild
(
_kToolBarIndex
,
Point
.
origin
);
positionChild
(
_kBodyIndex
,
new
Point
(
0.0
,
toolBarSize
.
height
));
}
}
class
Scaffold
extends
StatelessComponent
{
final
_ToolBarAndBodyLayout
_toolBarAndBodyLayout
=
new
_ToolBarAndBodyLayout
();
final
_ToolBarAndBodyLayout
_toolBarAndBodyLayout
=
new
_ToolBarAndBodyLayout
();
class
Scaffold
extends
StatelessComponent
{
Scaffold
({
Key
key
,
this
.
body
,
...
...
@@ -48,14 +47,15 @@ class Scaffold extends StatelessComponent {
final
Widget
floatingActionButton
;
Widget
build
(
BuildContext
context
)
{
final
offsetToolBar
=
toolBar
?.
withSizeOffsets
(
new
EdgeDims
.
only
(
top:
ui
.
window
.
padding
.
top
));
final
Widget
materialBody
=
body
!=
null
?
new
Material
(
child:
body
)
:
null
;
Widget
toolBarAndBody
;
if
(
t
oolBar
!=
null
&&
materialBody
!=
null
)
toolBarAndBody
=
new
CustomMultiChildLayout
(<
Widget
>[
materialBody
,
t
oolBar
],
if
(
offsetT
oolBar
!=
null
&&
materialBody
!=
null
)
toolBarAndBody
=
new
CustomMultiChildLayout
(<
Widget
>[
materialBody
,
offsetT
oolBar
],
delegate:
_toolBarAndBodyLayout
);
else
toolBarAndBody
=
t
oolBar
??
materialBody
;
toolBarAndBody
=
offsetT
oolBar
??
materialBody
;
final
List
<
Widget
>
bottomColumnChildren
=
<
Widget
>[];
...
...
This diff is collapsed.
Click to expand it.
packages/flutter/lib/src/material/tool_bar.dart
View file @
fe3aee88
...
...
@@ -20,7 +20,8 @@ class ToolBar extends StatelessComponent {
this
.
bottom
,
this
.
level
:
2
,
this
.
backgroundColor
,
this
.
textTheme
this
.
textTheme
,
this
.
sizeOffsets
:
EdgeDims
.
zero
})
:
super
(
key:
key
);
final
Widget
left
;
...
...
@@ -30,6 +31,21 @@ class ToolBar extends StatelessComponent {
final
int
level
;
final
Color
backgroundColor
;
final
TextTheme
textTheme
;
final
EdgeDims
sizeOffsets
;
ToolBar
withSizeOffsets
(
EdgeDims
offsets
)
{
return
new
ToolBar
(
key:
key
,
left:
left
,
center:
center
,
right:
right
,
bottom:
bottom
,
level:
level
,
backgroundColor:
backgroundColor
,
textTheme:
textTheme
,
sizeOffsets:
offsets
);
}
Widget
build
(
BuildContext
context
)
{
Color
color
=
backgroundColor
;
...
...
@@ -83,7 +99,7 @@ class ToolBar extends StatelessComponent {
),
child:
new
DefaultTextStyle
(
style:
sideStyle
,
child:
new
IntrinsicHeight
(
child:
new
Column
(
columnChildren
))
child:
new
Container
(
padding:
sizeOffsets
,
child:
new
Column
(
columnChildren
,
justifyContent:
FlexJustifyContent
.
collapse
))
)
);
...
...
This diff is collapsed.
Click to expand it.
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