Jetpack compose UI Challenge - building a modern login screen with Jetpack Compose

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ก.ย. 2024

ความคิดเห็น • 25

  • @Landofcoding
    @Landofcoding  ปีที่แล้ว +1

    Join our small android discord community discord.gg/snFzU9dZqz
    Make sure to say Hi when you join 😁

  • @antonioramongavilan
    @antonioramongavilan วันที่ผ่านมา

    very well explained, good job

  • @marvelrivera1194
    @marvelrivera1194 10 หลายเดือนก่อน

    Good job

  • @AbdullahAlMamun-to9zh
    @AbdullahAlMamun-to9zh ปีที่แล้ว

    Amazing!

  • @saeedsharif2463
    @saeedsharif2463 ปีที่แล้ว

    sir in jmy textfield text not start from the start of

  • @jasmeetsinghchawla3755
    @jasmeetsinghchawla3755 ปีที่แล้ว

    Bro design fascinated me. Did you also learn ui ux designing?

  • @Martin-nb4sg
    @Martin-nb4sg ปีที่แล้ว

    Hey! Thx for sharing Boss. I think the initial proyect repo is not complete :/

    • @Landofcoding
      @Landofcoding  ปีที่แล้ว +1

      Thank you for notifying me, check it now i updated the link

    • @Martin-nb4sg
      @Martin-nb4sg ปีที่แล้ว

      @@Landofcoding thx for the quick reply 🫶

  • @daviddereba6305
    @daviddereba6305 9 หลายเดือนก่อน

    Nice design, but I cannot find the repo, kindly help

    • @Landofcoding
      @Landofcoding  9 หลายเดือนก่อน

      It's in the description
      Make sure to switch to the design branch

  • @themindsetgarage
    @themindsetgarage 9 หลายเดือนก่อน

    git hub repo not complete.hard to identify the project

    • @Landofcoding
      @Landofcoding  9 หลายเดือนก่อน

      github.com/lofcoding/ComposeLoginScreen/tree/screen-design

  • @marvelrivera1194
    @marvelrivera1194 10 หลายเดือนก่อน

    Hi

  • @Ali_Jafari
    @Ali_Jafari 8 หลายเดือนก่อน

    Thanks for the video (●'◡'●)

  • @frankyjunior6005
    @frankyjunior6005 ปีที่แล้ว +1

    i got problem, i cant find `TextFieldDefaults.color` method
    colors = TextFieldDefaults.color(
    unfocusedPlaceholderColor = MaterialTheme.colorScheme.unfocusedTextFieldText,
    focusedPlaceholderColor = MaterialTheme.colorScheme.focusedTextFieldText,
    unfocusedContainerColor = MaterialTheme.colorScheme.textFieldContainer,
    focusedContainerColor = MaterialTheme.colorScheme.textFieldContainer,
    )
    how to update this code?

    • @Landofcoding
      @Landofcoding  ปีที่แล้ว

      Did you import the project from my github repo?

    • @muhammadajisaputra9493
      @muhammadajisaputra9493 9 หลายเดือนก่อน

      I didn't clone your github. but I made the following video and I encountered the same problem on the colors part@@Landofcoding

    • @light_comes_with_patience
      @light_comes_with_patience 9 หลายเดือนก่อน

      Yeah I am facing this issue even though I cloned the github repo
      I am not sure where .colors is anyways. I looked up documentations and colors does not exist for TextFieldDefaults

    • @light_comes_with_patience
      @light_comes_with_patience 9 หลายเดือนก่อน +1

      There is another way to do it I think though.
      colors = TextFieldDefaults.textFieldColors(
      unfocusedLabelColor = MaterialTheme.colorScheme.unfocusedTextFieldText,
      focusedLabelColor = MaterialTheme.colorScheme.focusedTextFieldText,
      containerColor = MaterialTheme.colorScheme.textFieldContainer,
      ),
      This works as well it seems

    • @light_comes_with_patience
      @light_comes_with_patience 9 หลายเดือนก่อน +4

      I found out the issue.
      Basically you need to upgrade the jetpack bom dependency in your gradle.build to the latest one. Mine was 2022:10.00 so it was very old, you need to upgrade it to something like 2023 to get the .color