Это видео недоступно.
Сожалеем об этом.

Edit Profile UI - Settings UI Tutorial - Part 1

Поделиться
HTML-код
  • Опубликовано: 14 авг 2024
  • In this Flutter UI challenge, you will learn how to recreate a Settings UI with Flutter. In part one we are creating the Edit Profile page then in part two will create Settings UI.
    #settingsui #flutterchallenge #speedcode
    🛑 Prepare and Publish Flutter apps - Playlist:
    • Prepare and Publish Fl...
    🔴For other flutter Speed coding video Subscribe to the channel : / @mjsdcoding
    Flutter Speed Coding playlist : • Flutter UI Challenge -...
    Source Code : github.com/cod...
    Design by : dribbble.com/s...
    Music by • Video

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

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

    Watch my last video : Flutter - Build and Release an Android App | App Signing
    ruclips.net/video/g1fByAsqQRk/видео.html

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

    Thank you very much, you are great. You very help me. I just started to learn flutter, and you very easy discuss about all widgets and what we can do in the next step. Thank you 🔥

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

    Finally i got a best channel to learn the flutter🧡.Thankyou so much

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

    Excelent!

  • @manissabel3145
    @manissabel3145 3 года назад +8

    #FREEPALESTINE

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

    wow....luar biasa....mantaps...

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

    The speed here is not meant for learning. Its just for show. The assumption is that you already know Flutter.

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

    Thank you so much was looking for a good looking profile page and thanks to am sorted

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

    Thank You❤️

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

    thanks
    for teaching me

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

    There is no code for edit icon near image. Please show that too. options to choose from cam or gallery and set the image.

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

    good work bro
    nice

  • @peterewanfo4631
    @peterewanfo4631 4 года назад

    Please how did you create your intro on the application description. It would be helpful to know

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

    perfect, thanks

  • @emirfahimi0
    @emirfahimi0 4 года назад

    I’m new to flutter, may i know how to pass the edited profile to the default profile? I want to write to code to update the edited profile

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

    Thank you so much

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

    Good video, I like it, can anybody tell me how to takepic and update it to profile pic please.

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

    thank you so much

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

    Outlinebutton or Outlinedbutton

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

    Do you want to build a settings ui a normal

  • @ANDROGENIUS28
    @ANDROGENIUS28 4 года назад +1

    Code plz, repo is empty

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

    Add a default of false to isObscureTextField with named params like this.
    ```
    Widget buildTextField(
    {required String labelText,
    required String placeholder,
    bool isObscure = false}) {
    return Padding(
    padding: const EdgeInsets.only(bottom: 30.0),
    child: TextField(
    obscureText: isObscure,
    decoration: InputDecoration(
    contentPadding: const EdgeInsets.only(bottom: 3),
    labelText: labelText,
    floatingLabelBehavior: FloatingLabelBehavior.always,
    hintText: placeholder,
    hintStyle:
    const TextStyle(fontWeight: FontWeight.w300, color: Colors.blue),
    ),
    ),
    );
    }
    ```