Arik Achmad

Results 15 comments of Arik Achmad

it happened to me too @dessalines. Just change your parent theme on `res/value/theme` to `Theme.AppCompat.Light.xxxxx` and don't forget to add AppCompact Dependency to Gradle

Same with me, with my real device (not emulator) IOS 15.5. I got wrong saveDir path too

You can do it like this ``` activity?.askPermissions(Manifest.permission.WRITE_EXTERNAL_STORAGE) ```

Yes my friend @CMircea , but we still get the `PermissionCallbacks` ``` activity?.askPermissions(Manifest.permission.CAMERA) { onGranted { here.. } .... } ``` i already use it. **Update** i forgot about this....

If you have created custom view, you can do it like this ``` inline fun ViewManager.loadingButton(init: (LoadingButton).() -> Unit): LoadingButton { return ankoView({ ctx -> LoadingButton(ctx) }, theme = 0)...

You can use my repo fork @dgurudot ``` dependencies: flutter_webview_plugin: git: https://github.com/kiratheone/flutter_webview_plugin.git ``` it's been upgraded to Android v2 Embedding and null safe

you can use from this PR #114 ``` dio_http_cache: git: https://github.com/danilof/dio-http-cache ``` Credit to @danilof