React Native Tutorial #15 - Icons & More Flexbox

Sdílet
Vložit
  • čas přidán 7. 08. 2024

Komentáře • 41

  • @gabrielmoraes4516
    @gabrielmoraes4516 Před rokem +5

    The Net Ninja channel is my GO TO whenever I need to learning something or fix an error! Thanks for making awesome videos!!!!

  • @yapayzeka
    @yapayzeka Před 4 lety +1

    very very useful. thank you

  • @md.raysulkobir650
    @md.raysulkobir650 Před 4 lety +2

    Thanks, sir.

  • @eldeest8554
    @eldeest8554 Před 3 lety +1

    Thanks!

  • @whoami-so2hy
    @whoami-so2hy Před 3 lety

    thanks for sharing

  • @i_zoru
    @i_zoru Před 4 lety +4

    to be honest, i followed your tutorial from the beginning, about the icons, i tried to display it in both ways ,
    from the website. and the emulator, the icon displayed in the web (responsive mode) , but why it doesn't displayed in the emulator mode??

  • @ahliddinmazbutov2245
    @ahliddinmazbutov2245 Před 2 lety +1

    Great

  • @laurabennis3871
    @laurabennis3871 Před 4 lety +1

    thank you a lot sir for your tutorials, i have a question though. can i launch this todo app without going through expo on my phone?

    • @spongeboblover7052
      @spongeboblover7052 Před 4 lety +2

      you can build it using expo build:android or expo build:IOS

  • @mirzaalam1980
    @mirzaalam1980 Před 3 lety

    I cannot clear the input field after adding todos. Can you please tell me how to do it?

  • @instant-code
    @instant-code Před 4 lety +3

    please make a project on expo like login signup and then curd operation

  • @andmatboyspartan-heading3290

    You are the best

  • @thefool733
    @thefool733 Před 4 lety +36

    this series is great and all, but how do I sell this todo app for 25 billion dollars?

    • @alizalzar
      @alizalzar Před 4 lety +10

      For that you should be searching for "how do I sell this todo app for 25 billion dollars" in google, Not "React Native Tutorial"!

    • @thefool733
      @thefool733 Před 4 lety +7

      @@alizalzar I did, this was the first result...

    • @cynicalobserver1118
      @cynicalobserver1118 Před 3 lety +7

      username checks out

    • @ibadshaikh2215
      @ibadshaikh2215 Před 3 lety +3

      The username says it all!

    • @bilelrahmouni01
      @bilelrahmouni01 Před 3 lety +3

      Asking how to apply to NASA after one physics lesson

  • @MrDania101
    @MrDania101 Před 2 lety

    thanks

  • @manoj-k
    @manoj-k Před 2 lety

    🔥🔥🔥

  • @baonguyen9815
    @baonguyen9815 Před 4 lety +4

    I got "Error : undefined Unable to resolve module '@expo/vector-icon' . . . " can you help me plz !!!!

    • @SabioII
      @SabioII Před 4 lety

      Was it a typo? '@expo/vector-icon' instead of '@expo/vector-icons' ?

  • @johnconnor9787
    @johnconnor9787 Před 4 lety

    Cool

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

    if you took warning message like that "error module 1 is missing from the asset registry" solution is that,
    npm i @react-native/assets-registry
    yarn version;
    yarn add @react-native/assets-registry
    write this code to your command line.

  • @AbhaySingh-gm4ld
    @AbhaySingh-gm4ld Před měsícem

    Cannot find module : '@expo/vector-icons'; i got an error------ any solution plz...

  • @StarBattle08
    @StarBattle08 Před 4 lety

    the color property on MaterialIcons doesn't work for me

  • @kiranpawar2463
    @kiranpawar2463 Před 4 lety +1

    𝙂𝙧𝙚𝙖𝙩 𝙫𝙞𝙙𝙚𝙤👍

  • @Natokserialcom
    @Natokserialcom Před 4 lety +3

    How to clear TextInput field after submit ?

    • @mehra.akshit
      @mehra.akshit Před 4 lety +6

      Add `value` prop to your `` component, as `value={text}` to bind the component with the current state. At the end of the `onPress` handler function for your `` component, set the input text state to empty, using `setText('')`.

    • @jayanisumudini6662
      @jayanisumudini6662 Před 4 lety +2

      @Coverman Zero @Taslima Kabir
      function AddTodo({addTodo}) {
      const [newItem, setItem] = useState('');
      return (

      setItem(item)}
      />
      {
      addTodo(newItem);
      setItem('');
      }}
      color="coral"
      />

      );
      }

    • @bobhunt1050
      @bobhunt1050 Před 4 lety

      You need to add a handlePress component and add it to your Button onPress. your addTodos.js should look like this...
      mail.google.com/mail/u/0?ui=2&ik=d72915211f&attid=0.0&permmsgid=msg-f:1668265849611511881&th=1726def38d026849&view=att&disp=safe

    • @JorgeGarcia-ef4py
      @JorgeGarcia-ef4py Před 3 lety +1

      @@mehra.akshit thank you, it worked

      {
      submitHandler(text);
      setText('');
      }} title='add todo' color='coral'/>

  • @SkillDoge
    @SkillDoge Před 3 lety

    I dont use expo to work with react native, and i can't import these icons in my project. I googled it, but no results. Any ideas?

    • @abdulsalamaboubakar4059
      @abdulsalamaboubakar4059 Před 3 lety +1

      checkout react native elements and look in the icon section you will find material icons for the trach can

    • @filipsavic2165
      @filipsavic2165 Před 3 lety +1

      Try adding this at the end of your 'android/app/build.gradle':
      apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"
      Then import icons like this (no curly braces):
      import MaterialIcons from 'react-native-vector-icons/MaterialIcons';

    • @ahmadrifa6735
      @ahmadrifa6735 Před 3 lety

      you must restarting react-native run-android its should work

  • @sanketgore2515
    @sanketgore2515 Před 3 lety

    please please please share the icons documentation link, I can't find it.

  • @mohamedatef97
    @mohamedatef97 Před 2 lety +1

    borderStyle: "dashed" not working on iOS, but working on web. Why???

  • @manoj-k
    @manoj-k Před 2 lety

    🔥🔥🔥