Aryk Grosz

Results 89 comments of Aryk Grosz

> @KyleAsaff If that is react-native-bottom-sheet, you should disable its content panning gesture. In other words: > > enableContentPanningGesture={false} > > Then the multi-slider will work. Yes but that kills...

@AronBe - If you do end up using EAS...you can play with this config plugin: This is what I have: ```js const { AndroidConfig, withAndroidStyles, } = require("@expo/config-plugins"); const withFullScreenDialogStyles...

@AronBe nice I'll try that out... it's much simpler. PS, congrats on the career move from finance. 👍

Hey @AronBe I used that code, and I'm still getting the dark translucent bar across the top. I looked at your code and I'm a little confused. You said: >...

Oh i see what you did, you removed the setting translucent setting, and just flipped it with the config plugin. Got it! Ok, now I have "expo_splash_screen_status_bar_translucent" set to true...

The solution is pretty simple. It is just this: ```ruby module Spec module SetupAndTeardown def setup super if metadata[:vcr] options = metadata[:vcr].is_a?(Hash) ? metadata[:vcr] : {} VCR.insert_cassette StringHelpers.vcr_path(self), options end...

I'm trying to fork and run specs. On 2.4.1 with a clean bundle install rake test gives me ```ruby 1) Error: MinitestVcr::Spec::an it with metadata::with a nested example group#test_0002_can supply...

Upgrading webmock fixes it, so going to update it.

Is there any reason why this is coupled to Minitest::Spec and not Minitest::Test? The setup and teardown exist on that class, and I'm not sure why this has to be...