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

環境
Windows11 pro 64bit
Flutter 3.3.7

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

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
@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),
),
@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), ), 略
  @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