armandsLa

Results 30 comments of armandsLa

Calling `public_send` will not work if you have custom fields in blueprint. It will throw "undefined method" error

I agree on idea that exporting Unity is the best way to go. @ucerxxx do you have any information you would like to share on how to do it?

I was able to resolve this issue by updating style.xml and removing the: ``` val splashScreenView = installSplashScreen() splashScreenView.setOnExitAnimationListener { splashScreenViewProvider -> splashScreenViewProvider.remove() } ``` Leaving this line causes NormalTheme...

Yes, black bars were caused by app not switching to `NormalTheme` after `Theme.SplashScreen` is done. We were able to replicate this on both emulator and Pixel 4 device. I'm not...

Yes, calling `SystemChrome.setSystemUIOverlayStyle` had no effect on bar colors(both status and navigation). However, it still could change other settings like `systemNavigationBarIconBrightness`. Here is the `SystemUiOverlayStyle` we are using: ``` SystemUiOverlayStyle(...

We tested this on both Pixel 4 emulator and Pixel 4 device.

I'm testing on API 33. I will create an example project next week.

I have created a sample project showing this issue: https://github.com/armandsLa/bars-flutter Launch screen was added according to Android documentation and this Flutter sample: https://github.com/flutter/samples/tree/main/android_splash_screen While creating this sample I noticed, that...