don't show placeholder while resizing

This commit is contained in:
Nick Fisher
2023-10-23 01:34:48 +11:00
parent 8130319801
commit 73db953564

View File

@@ -249,7 +249,7 @@ class _SizedFilamentWidgetState extends State<_SizedFilamentWidget> {
]));
}
if (widget.controller.textureDetails == null || _resizeTimer != null) {
if (widget.controller.textureDetails == null) {
return Stack(children: [
Positioned.fill(child: widget.initial ?? Container(color: Colors.red))
]);