GridView列和行标题中的文本溢出

时间:2019-04-24 16:24:20

标签: dart flutter

我试图将一些数据放入GridView中,并且行和列的标题溢出:

enter image description here

列是一些随机名称,行是1到30之间的“这是行号X”。

这是我用来创建GridView的代码:

    <thead>
    <?php
        //Grabs the directory & prevents '.' and '..' in array
        $dir = "/Users/*/Sites/domain-dns-script/sources/zones/$zone_date";
        $files = array_slice(scandir($dir), 2);
        $filter = glob($dir . "/*.dns");
    ?>
    </thead>
    <tbody>
        <!-- Loops through each file in directory and filter out only .dns files -->
        <?php $i =0 ;foreach ($filter as $file) {
            //Adding the path back to the filename
            $fileContent = $file;
        ?>
        <tr>
            <!-- Output the array number -->
            <td><?php echo $i; ?></td>
            <!-- Output the filename -->
            <td><a href="<?php echo $file;?>"><?php echo $file; $i++; ?></a>
            <!-- Grab contents inside the file -->
            <td><?php readfile($fileContent) ?></td>
        </tr>
        <?php } ?>
    </tbody>

我有一个添加表中所有单元格的函数。在其中的代码添加列标题,然后为每一行添加标题,然后添加一堆文本字段,其值为0。

这是列标题的代码:

Form(
    key: _formKey,
    autovalidate: formAutoValidate,
    child: GridView.count(
        crossAxisCount: names.length + 1,
        mainAxisSpacing: 0,
        crossAxisSpacing: 0,
        padding: EdgeInsets.all(0),
        shrinkWrap: false,
        children: _gridWidgets(),
    ),
),

如何使标头单元扩展为包含水平和垂直的全文?

谢谢。

0 个答案:

没有答案