📜  容器固定宽度颤动 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:50.337000             🧑  作者: Mango

代码示例1
FractionalTranslation(
    translation: Offset(0, 0),
        child: Container(
        width: 100,
        height: 100,
        child: SizedBox(
            height:  1,
            width: 1,
            child: const ColoredBox(color: Colors.amber),
        )
    ),
),