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

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

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

  • @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

  • @ДмитрийСмирнов-п9ю
    @ДмитрийСмирнов-п9ю Месяц назад

    Thanks for the video. Though, created myself some extra-job with first doing then watching video and painting triangle through custom shape XD

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

    Good job

  • @AbdullahAlMamun-to9zh
    @AbdullahAlMamun-to9zh Год назад

    Amazing!

  • @jasmeetsingh-o8r
    @jasmeetsingh-o8r Год назад

    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 11 месяцев назад

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

    • @Landofcoding
      @Landofcoding  11 месяцев назад

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

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

    sir in jmy textfield text not start from the start of

  • @themindsetgarage
    @themindsetgarage 11 месяцев назад

    git hub repo not complete.hard to identify the project

    • @Landofcoding
      @Landofcoding  11 месяцев назад

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

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

    Hi

  • @Ali_Jafari
    @Ali_Jafari 10 месяцев назад

    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 11 месяцев назад

      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 10 месяцев назад

      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 10 месяцев назад +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 10 месяцев назад +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