Modern Design Flutter Login Page UI | Flutter Login Screen 2023

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

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

  • @sleepingvenerable
    @sleepingvenerable 9 месяцев назад +2

    Who is here from video 1 ....Great videos can't wait to start another series

  • @afifakromi2870
    @afifakromi2870 2 года назад +4

    this is insane man. Thank you

  • @SarathKumar-ho6qf
    @SarathKumar-ho6qf 2 года назад +4

    Amazing video... Very professional... Make more videos like this... I really like your hard work for deliver the videos with all details.

    • @CodingwithT
      @CodingwithT  2 года назад +1

      I'm glad you like it 🤠😃

  • @jethroruel
    @jethroruel 9 месяцев назад

    Thank you very much brother!

    • @CodingwithT
      @CodingwithT  9 месяцев назад

      You are very welcome 🤗

  • @kushal6333
    @kushal6333 Год назад +2

    Can i know how to change the blue color when we hover on to our textfields I want to use my custom color there !!

    • @CodingwithT
      @CodingwithT  Год назад

      Yes you can do that too in themes as I did.
      Simply add its focus border property .

    • @kushal6333
      @kushal6333 Год назад

      @@CodingwithT Yup it worked thank you !!

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

    Will you upload more videos? I realy like it :) Great job.

    • @CodingwithT
      @CodingwithT  2 года назад +2

      Thank you 🤠😀. Yes I'll upload the next video in a few hours. Stay Tune✌️

  • @gionavin-l5j
    @gionavin-l5j Год назад

    Thank you soo much bro. I was wandering if you could post a tutorial on how to connect an app with a dashboard for the admin thank you .

    • @CodingwithT
      @CodingwithT  Год назад

      Yes I will do that right after an ongoing e-commerce playlist.

  • @yyeessiimm
    @yyeessiimm 2 года назад +1

    thank youuuu

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

    you are amazing bro.....

  • @baso3001channel
    @baso3001channel Год назад +2

    Amazing video and also professional. I have just a doubt, why do you use stateless widget for the login page and also the register? Shouldn't it be stateful?

    • @CodingwithT
      @CodingwithT  Год назад +2

      Thank you and a Good question.
      As I'm using a State management GetX library so all the states will be handled by the Getx.
      In the login and signup textfields don't need stateful widgets as they manage their own states so in typical we don't need stateful class here.
      But for other states instead of making a whole class as stateful, it's better to use stateless class and use state management

    • @baso3001channel
      @baso3001channel Год назад

      ​@@CodingwithT Ty so much for your answer! Now it's all clear! 🔥

  • @mawandenxumalo4901
    @mawandenxumalo4901 Год назад +1

    Hi Sir, after the creation of the welcome_screen when I try to debug I get the error "Exception has occurred.
    NoSuchMethodError (NoSuchMethodError: The method 'toUpperCase' was called on null.
    Receiver: null
    Tried calling: toUpperCase())" on the code line: child: Text(tLogin.toUpperCase()), am I missing a library or do I need to declare this somewhere?

    • @CodingwithT
      @CodingwithT  Год назад +1

      Dear its because the value on which you added toUpperCase in null. Try to check if value ?? Means null pass '' empty string

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

    Thanks 🙏🙏🙏🙏🙏

  • @harisankarl6292
    @harisankarl6292 4 месяца назад

    subscribed. Very good .How can it be implemented using provider, mongodb and clean architecture? Is clean architecture mor complex?

    • @CodingwithT
      @CodingwithT  20 дней назад

      Thank you for subscribing! To implement this using Provider, MongoDB, and Clean Architecture, you'd structure your app into layers (presentation, domain, and data). Clean architecture is more complex due to its separation of concerns, but it leads to better maintainability and testability in larger projects. You can use Provider for state management and interact with MongoDB in the data layer.

    • @harisankarl6292
      @harisankarl6292 20 дней назад

      @CodingwithT thanks

  • @chillvibeReels
    @chillvibeReels Год назад

    Kindly tell my why does my login screen get crashed and go back to welcome_screen after some time

    • @CodingwithT
      @CodingwithT  Год назад +1

      There must be something wrong. I cannot tell without seeing it.

    • @chillvibeReels
      @chillvibeReels Год назад

      @@CodingwithT issue has been resolved. Thanks

    • @karlkjrstad942
      @karlkjrstad942 Год назад

      I have the same problem. I'll get this error "A RenderFlex overflowed by 146 pixels on the bottom." Could you please share how to fix this?

    • @chillvibeReels
      @chillvibeReels Год назад

      @@karlkjrstad942 I rewrite code again and test before writing some new lines and error resolved

    • @karlkjrstad942
      @karlkjrstad942 Год назад

      @@chillvibeReels an Answer please 🙂

  • @sholajimoh-mx2ul
    @sholajimoh-mx2ul 2 года назад +1

    assalamu alaikum brother may allah reward you , i really learn alot from your videos but i'm having issues with my android studio. i dont know if you can help me fix the issues or u should recommend a website that can help me out.....thank you may allah bless u and ur family

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

      Ameen. Thank you 😊.
      What is the issue you are facing?

  • @StudyBuddyMatcher
    @StudyBuddyMatcher Год назад

    Hi can you share where you get your images from? Thank you!

    • @CodingwithT
      @CodingwithT  Год назад

      You can get them from the icons8.com

  • @EmzyWoo-km6gx
    @EmzyWoo-km6gx Год назад

    i will meet the finishal demands

  • @peterksaho3091
    @peterksaho3091 2 года назад +1

    Hi, please I need your help small, I have created TextFormfield and I want to validate if Global key. This is the code I write validator: (value){
    If(value?. length < 6){ return " at least 6 character"
    }. But I get error line under the less than sign and have try several to solve it but it didn't work. So please if you can help me.
    }

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

      Well seems fine, please add brackets ((value?.length) < 6)

  • @hosamzaki8965
    @hosamzaki8965 2 года назад +1

    alikom alsalam wa rahmat allh wa barakato

  • @dreamy4174
    @dreamy4174 5 месяцев назад

    Asalam alaikum brother, the code and resources are not opening😢

    • @CodingwithT
      @CodingwithT  10 дней назад

      Please contact the support team on WhatsApp for assistance with this issue.

  • @EmzyWoo-km6gx
    @EmzyWoo-km6gx Год назад

    sir can i hire you for my app plese

    • @EmzyWoo-km6gx
      @EmzyWoo-km6gx Год назад

      am sererious am not joking

    • @CodingwithT
      @CodingwithT  Год назад +1

      Yes please share the following at support@codingwitht.com
      Your name.
      Your Budget.
      Your Project detail's. Please feel free to explain or add any references 🙂.
      Regards

    • @EmzyWoo-km6gx
      @EmzyWoo-km6gx Год назад

      @@CodingwithT i just contacted you on whatapp

  • @Noumandev
    @Noumandev Год назад

    bro ya images chahi hain

    • @CodingwithT
      @CodingwithT  Год назад

      You can get those from Icons8.com

    • @Noumandev
      @Noumandev Год назад

      is main figma main nhi ha??
      @@CodingwithT