Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/dart/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Flutter 导出Pdf时如何忽略以阿拉伯语文本显示的箭头-颤振_Flutter_Dart - Fatal编程技术网

Flutter 导出Pdf时如何忽略以阿拉伯语文本显示的箭头-颤振

Flutter 导出Pdf时如何忽略以阿拉伯语文本显示的箭头-颤振,flutter,dart,Flutter,Dart,Table.fromTextArray( 上下文:上下文, 边界:const TableBorder( 左:BorderSide(), 右:BorderSide(), 顶部:BorderSide(), 底部:BorderSide(), 水平边:边界边(), 垂直边:BorderSide()), 头部信号:校准。中心, cellAlignment:Alignment.center, 头部装饰:盒子装饰( 颜色:_lightColor, ), 校长:25, 牢房高度:30, 标题样式:文本样式( 颜

Table.fromTextArray(
上下文:上下文,
边界:const TableBorder(
左:BorderSide(),
右:BorderSide(),
顶部:BorderSide(),
底部:BorderSide(),
水平边:边界边(),
垂直边:BorderSide()),
头部信号:校准。中心,
cellAlignment:Alignment.center,
头部装饰:盒子装饰(
颜色:_lightColor,
),
校长:25,
牢房高度:30,
标题样式:文本样式(
颜色:_baseTextColor,
尺寸:10,
fontWeight:fontWeight.bold,
字体:myFont,
),
cellStyle:TextStyle(
颜色:_深色,
//尺寸:10,
继承:是的,
字间距:1.2,
渲染模式:PdfTextRenderingMode.clip,
字体:myFont),
//RowEdition:BoxEdition(
//边框:BoxBorder(
//底部:是的,
//颜色:强调颜色,
//宽度:.5,
//   ),
// ),
标题:List.generate(
列的长度,
(col){
返回列[col];
},
),
数据:List.generate(
tableData.length,
(行)=>List.generate(
列的长度,
(col){
返回tableData[行][col];
},
),
),
),
     Table.fromTextArray(
            context: context,

            border: const TableBorder(
                left: BorderSide(),
                right: BorderSide(),
                top: BorderSide(),
                bottom: BorderSide(),
                horizontalInside: BorderSide(),
                verticalInside: BorderSide()),


            headerAlignment: Alignment.center,
            cellAlignment: Alignment.center,
            headerDecoration: BoxDecoration(
              color: _lightColor,
            ),
            headerHeight: 25,
            cellHeight: 30,
            headerStyle: TextStyle(
              color: _baseTextColor,
              fontSize: 10,
              fontWeight: FontWeight.bold,
              font: myFont,
            ),

            cellStyle: TextStyle(
                color: _darkColor,
                // fontSize: 10,
                inherit: true,
                wordSpacing: 1.2,
                renderingMode: PdfTextRenderingMode.clip,
                font: myFont),
            // rowDecoration: BoxDecoration(
            //   border: BoxBorder(
            //     bottom: true,
            //     color: accentColor,
            //     width: .5,
            //   ),
            // ),

            headers: List<String>.generate(
              columns.length,
              (col) {
                return columns[col];
              },
            ),
            data: List<List<String>>.generate(
              tableData.length,
              (row) => List<String>.generate(
                columns.length,
                (col) {
                  return tableData[row][col];
                },
              ),
            ),
          ),