Flutter DataTableのパディングを削除するサンプル

環境
Windows11 pro 64bit
Flutter 3.3.7

構文
DataTable(
columnSpacing: 0,
horizontalMargin: 0,
columns: [xxx],
rows: [xxx],
),
DataTableのパディングを削除するには、引数「columnSpacing」と
引数「horizontalMargin」を使います。

使用例

  @override
  Widget build(BuildContext context) {
    return SafeArea(
      child: Scaffold(
        body: Center(
          child: DataTable(
            columnSpacing: 0,
            horizontalMargin: 0,
            decoration: BoxDecoration(
              border: Border.all(color: Colors.red),
            ),
略

 

Flutter

Posted by arkgame