Travel App UI Part 2 - Figma to React Native

Поделиться
HTML-код
  • Опубликовано: 16 ноя 2024

Комментарии • 17

  • @derekcassese9280
    @derekcassese9280 2 года назад

    Did you ever do a video on your setup? Multiple Copy Paste? How it indents etc. Would love to understand your shortcuts.

  • @oscar_cornejo
    @oscar_cornejo 3 года назад +3

    Hi, thanks for the video, but I have a query, how to fix the upper right curve of the tabs? When I scroll I see a white background, see minute 38:00

    • @MadeWithMatt
      @MadeWithMatt  3 года назад +2

      Great catch, I hadn't noticed that. After inspecting it more, I do believe it is applying the border, although since the background behind the tab bar is not transparent, it is cutting off the UI as soon as it gets as low as the tab bar. I found a workaround! Try replacing the tabBar style in App.js with the following:
      backgroundColor: 'white',
      position: 'absolute',
      left: 0,
      bottom: 0,
      height: 80,
      borderTopLeftRadius: 20,
      borderTopRightRadius: 20,
      Let me know if that works 😁

    • @oscar_cornejo
      @oscar_cornejo 3 года назад

      @@MadeWithMatt Thanks for the help! 👏✌

  • @dopple1977
    @dopple1977 3 года назад +2

    If all values are static from figma, what would it look like on other phone screen sizes?

    • @MadeWithMatt
      @MadeWithMatt  3 года назад +2

      That's a great question and honestly something I'm looking to learn next. Do you have any suggestions for frameworks or methods to create responsive UIs?

  • @maibbu8183
    @maibbu8183 3 года назад +1

    It would be good to have how to reuse styles that were created in figma in React Native. Its totally redundant way of design the app again in React Native. It would be cool Matt explained how
    figma code converted into react native UI code and styles. So that we don't need to create again by just seeing the screens of figma. Some plugins like Anima will help us directly import styles and design into React Native apps. Except that This demo videos are good one.

    • @MadeWithMatt
      @MadeWithMatt  3 года назад

      I agree with you! It would be nice to have a Figma to React Native converter!

  • @RahulRahul-pj1fo
    @RahulRahul-pj1fo 8 месяцев назад

    hi. for some reason, the big image doesn't display when using on an android emulator

  • @zekiunyildiz
    @zekiunyildiz 3 года назад

    Amazing

    • @MadeWithMatt
      @MadeWithMatt  3 года назад

      Thanks man really appreciate it 😄

    • @zekiunyildiz
      @zekiunyildiz 3 года назад

      @@MadeWithMatt I am grateful to you. greetings from Turkey

  • @chengdongxue2231
    @chengdongxue2231 3 года назад

    Hi Matt, It was very nice this video, But could you introduction that how to fetch data from remote server and implement these functions.
    Very appreciate

    • @MadeWithMatt
      @MadeWithMatt  3 года назад +2

      That's a great idea, I'll have a video up soon about fetching data from a server 😁

    • @chengdongxue2231
      @chengdongxue2231 3 года назад

      @@MadeWithMatt woooow,great,many thanks

  • @AshishGupta-ot7vb
    @AshishGupta-ot7vb 3 года назад

    Will this be responsive??? Let me know if I need a responsive UI in react native.

    • @MadeWithMatt
      @MadeWithMatt  3 года назад

      Generally, if you're using flexbox to space things out, your UI will be responsive. Where it gets tricky is when you're building an app for both a phone and tablet. In situations like those, you'll need to display various sizes for your content depending on the size of the device. For the case of this video, this app is intended only for phones, so displaying different sizes depending on the size of the device is not required