kno3a87 / kuno_flutter_sample

0 stars 0 forks source link

Stack × Camera Example #2

Closed kno3a87 closed 1 year ago

kno3a87 commented 1 year ago

ref: #5

kno3a87 commented 1 year ago

Camera Preview を Stack に入れると Center 要素が消える🤔

kno3a87 commented 1 year ago

Camera Preview の実装見たところ, Stackexpanded が中で使われていることが判明 => 下記を入れたら同じく Center の要素が無視された!

                Stack(
                  fit: StackFit.expand,
                  children: [
                    SizedBox(
                      height: 200,
                      width: 200,
                      child: ColoredBox(color: Colors.blue.withAlpha(40)),
                    ),
                  ],
                ),
kno3a87 commented 1 year ago

嘘,Center 要素は保持されてて子がただただでかくなってるだけか Center に見えないのは Stack の alignment が topStart になってるからや

kno3a87 commented 1 year ago

CameraPreview 表示準備中にぐるぐる表示しようと思ったけど一瞬しか見えない,だけどカメラ画面表示までにはちょっと間が空く…仕方ないのかな…🥺(ホットリロードでお試し) f0b17af

https://user-images.githubusercontent.com/23455702/218263819-8a347f14-9fe6-448f-b624-a9df39871119.mov