Charleston

Results 15 comments of Charleston

@maras93 Add these dependency if your use Kotlin ``` androidTestCompile "org.mockito:mockito-android:2.8.8" androidTestCompile('com.nhaarman:mockito-kotlin-kt1.1:1.5.0') { exclude group: 'org.jetbrains.kotlin' } ```

I had to add [react-app-rewired](https://www.npmjs.com/package/react-app-rewired) and [react-app-rewired-alias](https://www.npmjs.com/package/react-app-rewire-alias) and followed the same tip that our friend commented @yatessss above and worked (thank u 😄) My files ``` tsconfig.paths.json tsconfig.json config-overrides.js ```...

> @saghul with all due respect, I just wanted to know if there are any updates or plan to implement this, I know that work on this in your free...

People who created the separate component outside the material repository could create a direct pull request on lib Maintaining two repositories is kind of complicated to be honest Although the...

I solve the problem rendering only VideoPlayer when isFullScreen mode ``` .... @override Widget build(BuildContext context) { if (isFullScreen) { return _buildPlayer(); } return Scaffold( appBar: AppBar( elevation: 2, backgroundColor:...

``` const app = createApp(App).use(router).use(pinia) VueReCaptcha.install(app, { siteKey: import.meta.env.VITE_APP_RECAPTCHA_SITE_KEY, loaderOptions: { useRecaptchaNet: true, autoHideBadge: false } }) app.mount('#app') ```

> Yes this is working, thank you. > > Only concern is that 5.0.2 version is 6 months old so at some stage it will start creating problems with newer...

It's simple ``` import * as icons from '@mdi/js' icons[iconName] icons['mdiEye'] ```