Formik React Native Crash Course

Sdílet
Vložit
  • čas přidán 5. 03. 2023
  • Welcome to a youtube channel dedicated to programming and coding related tutorials. We talk about tech, write code, discuss about cloud and devops. That’s what we do all day, all year. We roll out a lot of series and videos on our channel.
    All the learning resources such as code files, documentations, articles and community discussions are available on our website:
    chaicode.com/
    You can find our discord link, github link etc on the above website.
    Twitter/X link: x.com/hiteshdotcom
    Discord link: hitesh.ai/discord
    Learn React with 10 projects: • Let's learn react from...
    Learn Docker: • A practical guide on D...
    Learn Kubernetes: • Complete Kubernetes Co...
    How does a browser works: • How does a browser wor...
    How nodejs works: • How node JS works | En...
    Learn Redux-toolkit: • Learn Redux Toolkit in...
    Learn NextJS: • Nextjs Full stack course
    Learn Typescript: • Why to learn Typescript
    Learn Javascript: • Welcome to new JavaScr...
    Learn React Native: • React Native Mastery: ...
    Learn Zustand: • React state management...
    Learn Golang: • How to get started wit...
  • Věda a technologie

Komentáře • 51

  • @mohitashliya8750
    @mohitashliya8750 Před 6 měsíci +2

    Very comprehensive tutorial on formik, as said there are very few or handful of available there.

  • @rahul_sidhha
    @rahul_sidhha Před rokem

    I appreciate your efforts so much, sir. I'm doing well and finally feel like I'm accomplishing something.

  • @wazrymohamed1654
    @wazrymohamed1654 Před rokem +1

    Superb.I am enjoying the process 😍

  • @rehandev7833
    @rehandev7833 Před 5 měsíci +3

    For those of you, who are facing Type error in VS Code like so:
    Type '(e?: FormEvent | undefined) => void' is not assignable to type '(event: GestureResponderEvent) => void'. Types of parameters 'e' and 'event' are incompatible.
    This is a bug that hasn't been fixed as of 30/12/2023, so the workarounds are:
    1. handleSubmit as unknown as (e: GestureResponderEvent) => void // This works fine
    2. () => handleSubmit() // This has performance issues

  • @paulthornton1302
    @paulthornton1302 Před 4 měsíci +1

    If you have an issue where the keyboard hides the output, you can add Keyboard.dismiss(); to the onSubmit like follows.
    onSubmit={ values => {
    console.log(values);
    generatePasswordString(parseInt(values.passwordLength));
    Keyboard.dismiss();
    }}
    Also add Keyboard to the import as such
    import { SafeAreaView, ScrollView, StyleSheet, Text, TextInput, TouchableOpacity, View, Keyboard } from 'react-native'
    Great course. Thank you.

  • @parthadhikari00
    @parthadhikari00 Před 4 měsíci

    This was such a great explanation, has to say had one of the best learning experience from this playlist. Thank you ❤❤

    • @visheshgupta4990
      @visheshgupta4990 Před 4 měsíci

      Hey ! Are you doing job or you are learning it for getting your job or switching your job ?

  • @reubenthomas1033
    @reubenthomas1033 Před rokem

    Awesome! Grateful for the content you're putting out. Waiting for the next ones.

  • @alexjuniortupapa
    @alexjuniortupapa Před 4 měsíci

    Excellent great course and great instructor.

  • @user-px6yb9zj9e
    @user-px6yb9zj9e Před 9 měsíci +6

    this was too fast.. previous tutorials were good

  • @abhayverma6300
    @abhayverma6300 Před rokem

    Strongly needed video

  • @anirudhcodes
    @anirudhcodes Před rokem

    Fantastic video! 😍

  • @gurpreetsingh-oo5zw
    @gurpreetsingh-oo5zw Před rokem

    thanks for providing valuable guidance; just asking why not use react-hook-form instead of formik???

    • @HiteshChoudharydotcom
      @HiteshChoudharydotcom  Před rokem +1

      You can use that too. Just wanted to have variety in react native

    • @VErmuratski
      @VErmuratski Před 5 měsíci

      From my experience, I just exhausted to adopt Picker (@react-native-picker/picker) working with Formik... react-hook-form way more better! Easy !!

  • @tarunn9646
    @tarunn9646 Před 2 měsíci

    I can't type my length of the password in the input box it is , being erased once i type it.. What to do?

  • @pranjaimewara1615
    @pranjaimewara1615 Před 11 hodinami

    Not able to find this Code in github. Can anybody help please?

  • @arsalanawan7516
    @arsalanawan7516 Před rokem

    make a video on agenda node package for scheduling or delete data , for this i will sponsor you but i am not that much rich

  • @bilelrahmouni01
    @bilelrahmouni01 Před 11 měsíci

    thank you

  • @DheerajYadav-yq1ed
    @DheerajYadav-yq1ed Před 7 měsíci

    followed the tutorial throughly even copied and pasted code in a another project stilll i'm not able to generate code and functionalities not as per the video

  • @inxeoz
    @inxeoz Před 3 měsíci

    awesome

  • @pranavpatki
    @pranavpatki Před rokem

    Looks like Coding Garden live stream 💯

  • @priyanshumodi7198
    @priyanshumodi7198 Před 3 měsíci

    But it doesnot work in ios

  • @raghavenderreddy2729
    @raghavenderreddy2729 Před rokem

    Waiting

  • @KartikeyTT
    @KartikeyTT Před 4 měsíci

    ty sir

  • @mletada
    @mletada Před rokem

    do you have a tutorial like this with API, database?

    • @HiteshChoudharydotcom
      @HiteshChoudharydotcom  Před rokem +2

      Yep, it’s an ongoing series and I will try to add them too

    • @mletada
      @mletada Před rokem +1

      @@HiteshChoudharydotcom okay thanks I will wait this :)

  • @ritikjha4567
    @ritikjha4567 Před 10 měsíci

    passing the handleSubmit reference to onPress throws the error.It's not working can somebody help

    • @enriquesalomon8197
      @enriquesalomon8197 Před 6 měsíci

      me too, have you solved it?

    • @sandeepsingh1409
      @sandeepsingh1409 Před 6 měsíci

      onPress={() => {
      handleSubmit()
      }}
      This solved the issue. Do not know if this method is correct.

    • @neeteshkaushik1745
      @neeteshkaushik1745 Před 5 měsíci

      you can wrap handleSubmit inside a callback and pass that callback inside onPress , eg : onPress = {( ) => handleSubmit( )}

  • @MoizKhan-uw3hx
    @MoizKhan-uw3hx Před 7 měsíci

    sir there is an error in onpress={handleSubmit} I think due to that error submit button is not working. please help me to solve this error

    • @neeteshkaushik1745
      @neeteshkaushik1745 Před 5 měsíci +3

      you can wrap handleSubmit inside a callback and pass that callback inside onPress , eg : onPress = {( ) => handleSubmit( )}

    • @_Anshukumar
      @_Anshukumar Před 4 měsíci

      const PasswordSchema = Yup.object({
      passwordLength: Yup.number()
      .min(4, 'Should be min of 4 characters')
      .max(16, 'Should be max of 16 characters')
      .required('Length is required')
      })

    • @_Anshukumar
      @_Anshukumar Před 4 měsíci

      And use this

  • @dheeraj2729
    @dheeraj2729 Před rokem

    Sir please do this series fast

    • @kruzzsteve7525
      @kruzzsteve7525 Před rokem +2

      Bro it's takes time to make this type of high quality video so please don't complain appreciate the content 🙏

  • @willgordon5737
    @willgordon5737 Před 12 hodinami

    Sir all of a sudden you went from beginner level to intermediate level. Way to fast.

  • @alitaha2598
    @alitaha2598 Před 8 měsíci

    FInaaaaly

  • @TheTabishnadeem
    @TheTabishnadeem Před 10 měsíci

    Respect++ for your effort to record 1 hr long video again with this much energy! 🫡🫡
    Really enjoying the series sir.😊

  • @allyouwanttoknow360
    @allyouwanttoknow360 Před rokem

    waste... hownto call reset outside formik?

  • @usmanmehar2555
    @usmanmehar2555 Před 8 měsíci

    sir there is an error in onpress={handleSubmit} I think due to that error submit button is not working. please help me to solve this error

    • @usmanmehar2555
      @usmanmehar2555 Před 8 měsíci

      submit button is not give error message and after entering valid entry this is not working. i hope you will answer me soon. i am waiting fo it.

    • @DheerajYadav-yq1ed
      @DheerajYadav-yq1ed Před 7 měsíci

      bro pass it like "onPress={()=>{handleSubmit}}" , @@usmanmehar2555

    • @MoizKhan-uw3hx
      @MoizKhan-uw3hx Před 7 měsíci

      But After implementing this functionality not woring@@DheerajYadav-yq1ed

    • @kanithisatishkumar7036
      @kanithisatishkumar7036 Před 7 měsíci +2

      put this code in place onpress(handelsubmit) ---- onPress={(event) => {
      handleSubmit();
      event.preventDefault();
      }}

    • @enriquesalomon8197
      @enriquesalomon8197 Před 6 měsíci

      @@kanithisatishkumar7036 Thanks ,big helps