Heewookji
Heewookji
[해당 코멘트](https://github.com/yoonjaepark/flutter_naver_login/issues/58#issuecomment-1056458373)를 보고 작업했는데, 안드로이드 버전 12에서만 해결되지 않아서 MainActivity의 theme을 @style/Theme.AppCompat로 설정해 해결했습니다.
iOS Safari 15 resize issue that is not your problem but may need a work around (workaround included)
```js imagesReady: () => { if (this.$refs.mySwiper.$swiper.device.ios) { window.removeEventListener('resize', this.$refs.mySwiper.$swiper.resize.resizeHandler); } }, ``` If u are using vue-awesome-swiper Inject imagesReady method into swiperOptions. This solved my problem.
I solved it by applying the architectures to be excluded when pod install is running as shown below. ``` post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_settings(target) target.build_configurations.each do |build_configuration| build_configuration.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]']...