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
d877ad86
Unverified
Commit
d877ad86
authored
Jul 16, 2020
by
Kate Lovett
Committed by
GitHub
Jul 16, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Table docs for horizontal scrolling (#61268)
parent
5a69de82
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
4 deletions
+19
-4
table.dart
packages/flutter/lib/src/widgets/table.dart
+19
-4
No files found.
packages/flutter/lib/src/widgets/table.dart
View file @
d877ad86
...
@@ -87,8 +87,17 @@ class _TableElementRow {
...
@@ -87,8 +87,17 @@ class _TableElementRow {
/// have one column, the [SliverList] or [Column] widgets will be more
/// have one column, the [SliverList] or [Column] widgets will be more
/// appropriate.
/// appropriate.
///
///
/// Rows size vertically based on their contents. To control the column widths,
/// Rows size vertically based on their contents. To control the individual
/// use the [columnWidths] property.
/// column widths, use the [columnWidths] property to specify a
/// [TableColumnWidth] for each column. If [columnWidths] is null, or there is a
/// null entry for a given column in [columnWidths], the table uses the
/// [defaultColumnWidth] instead.
///
/// By default, [defaultColumnWidth] is a [FlexColumnWidth]. This
/// [TableColumnWidth] divides up the remaining space in the horizontal axis to
/// determine the column width. If wrapping a [Table] in a horizontal
/// [ScrollView], choose a different [TableColumnWidth], such as
/// [FixedColumnWidth].
///
///
/// For more details about the table layout algorithm, see [RenderTable].
/// For more details about the table layout algorithm, see [RenderTable].
/// To control the alignment of children, see [TableCell].
/// To control the alignment of children, see [TableCell].
...
@@ -194,10 +203,16 @@ class Table extends RenderObjectWidget {
...
@@ -194,10 +203,16 @@ class Table extends RenderObjectWidget {
/// The keys of this map (column indexes) are zero-based.
/// The keys of this map (column indexes) are zero-based.
final
Map
<
int
,
TableColumnWidth
>
columnWidths
;
final
Map
<
int
,
TableColumnWidth
>
columnWidths
;
/// How to determine with widths of columns that don't have an explicit sizing algorithm.
/// How to determine with widths of columns that don't have an explicit sizing
/// algorithm.
///
///
/// Specifically, the [defaultColumnWidth] is used for column `i` if
/// Specifically, the [defaultColumnWidth] is used for column `i` if
/// `columnWidths[i]` is null.
/// `columnWidths[i]` is null. Defaults to [FlexColumnWidth], which will
/// divide the remaining horizontal space up evenly between columns of the
/// same type [TableColumnWidth].
///
/// A [Table] in a horizontal [ScrollView] must use a [FixedColumnWidth], or
/// an [IntrinsicColumnWidth] as the horizontal space is infinite.
final
TableColumnWidth
defaultColumnWidth
;
final
TableColumnWidth
defaultColumnWidth
;
/// The direction in which the columns are ordered.
/// The direction in which the columns are ordered.
...
...
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