Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix TableView example
  • Loading branch information
IchordeDionysos authored Feb 17, 2024
commit 69231befdac28886cc37969405faf3978f082062
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ import 'table_span.dart';
/// ```dart
/// TableView.builder(
/// cellBuilder: (BuildContext context, TableVicinity vicinity) {
/// return Center(
/// child: Text('Cell ${vicinity.column} : ${vicinity.row}'),
/// return TableViewCell(
/// child: Center(
/// child: Text('Cell ${vicinity.column} : ${vicinity.row}'),
/// ),
/// );
/// },
/// columnCount: 10,
Expand Down