Alex

Results 36 comments of Alex

I'm wondering too, could be good addition

def __upload(self) -> (bool, Optional[str]): self.browser.get(Constant.YOUTUBE_URL) time.sleep(Constant.USER_WAITING_TIME) self.browser.get(Constant.YOUTUBE_UPLOAD_URL) time.sleep(Constant.USER_WAITING_TIME) absolute_video_path = str(Path.cwd() / self.video_path) self.browser.find(By.XPATH, Constant.INPUT_FILE_VIDEO).send_keys(absolute_video_path) self.logger.debug('Attached video {}'.format(self.video_path)) title_field = self.browser.find(By.ID, Constant.TEXTBOX) title_field.click() time.sleep(Constant.USER_WAITING_TIME) # title_field.clear() I commented out...

I get Message: Dismissed user prompt dialog: Cannot contact reCAPTCHA. Check your connection and try again.

@TobyRoseman Asking here to not create a new issue. Basically I'd like to create a flutter app with real time image detection and I was thinking of using your framework,...

> This is **not** possible with TuriCreate. Understood, do you know of any alternatives of your framework ? Would help me a lot!

@lukewalczak Here is the minimal code: https://github.com/alexandredepape/progress-bar-animation With stacktrace: ```js ERROR Invariant Violation: [5,"RCTView",21,{"onLayout":true,"accessible":true,"accessibilityRole":"progressbar","accessibilityState":{"busy":true},"accessibilityValue":{"min":0,"max":100,"now":""}}] is not usable as a native method argument This error is located at: in RCTView (created...

I did: ```js import { Animated, StyleSheet } from "react-native"; import { ProgressBar } from "react-native-paper"; import { useEffect, useRef } from "react"; export default function App() { const progressBarValue...

@lukewalczak I was not able to no, could you take 5 minutes to reproduce this minimal example and try on your end if that works ? ```js import { Animated,...