|
@@ -28,6 +28,7 @@ class LastRecordTable extends StatelessWidget {
|
|
|
}
|
|
|
|
|
|
Widget _buildTable() {
|
|
|
+ final scrollController = ScrollController();
|
|
|
return Column(
|
|
|
children: [
|
|
|
const SizedBox(
|
|
@@ -48,8 +49,10 @@ class LastRecordTable extends StatelessWidget {
|
|
|
),
|
|
|
Expanded(
|
|
|
child: Scrollbar(
|
|
|
+ controller: scrollController,
|
|
|
thumbVisibility: true,
|
|
|
child: SingleChildScrollView(
|
|
|
+ controller: scrollController,
|
|
|
child: Table(
|
|
|
children: _buildRow(tableData),
|
|
|
),
|