Flutter Tutorial for Beginners #9 - Buttons & Icons

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

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

  • @kan15hka
    @kan15hka Год назад +111

    Note: 3:37 It is not FlatButton() anymore instead TextButton(), according to new flutter update.... Hope that helps!!!

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

      Great

    • @shalazoo8806
      @shalazoo8806 Год назад +14

      Yes, RaisedButton() is now: ElevatedButton() aswell

    • @XultrashaviT
      @XultrashaviT 7 месяцев назад

      @@shalazoo8806 OMG I LOVE YOU GUYS SO MUCH!!!!!

    • @pushkarjha3856
      @pushkarjha3856 2 месяца назад +1

      Thanks man

    • @vijayroshan.p6423
      @vijayroshan.p6423 Месяц назад

      @@shalazoo8806 u do not know how long i was searching my code what was wrong thanks brother

  • @arthurking2605
    @arthurking2605 3 года назад +13

    "You also need to spell image correctly", your sense of humour is awesome. That is something a very good teacher should have. Cheers to great teaching mate!

  • @michaelmcelligott5074
    @michaelmcelligott5074 Год назад +103

    Flutter changes too quickly! Just to put in a bit - around 3:15 he adds a color property to the RaisedButton (which is now called ElevatedButton, as many commentors pointed out). However, as far as I can tell, the ElevatedButton class no longer allows you to simply add a color parameter, it's a longer process. After a bit of hair-pulling, this is the code that eventually gave me what I wanted:
    body: const Center(
    child: ElevatedButton(
    onPressed: null,
    style: ButtonStyle(
    backgroundColor: MaterialStatePropertyAll(Colors.lightBlue),
    To change the style of the button, the class ButtonStyle is used within the ElevatedButton widget, and then to set a background color you have to use this MaterialStatePropertyAll widget, which you then nest the color inside of as you see above. After trying various methods and getting a lot of errors messages, I'm pretty sure this is how it must be done now. Let me know if anyone has a simpler method!
    EDIT: Strangely, the IconButton widget does allow you to use a color parameter, so you won't have to use the code above to change color. The only odd thing on my machine is that I had to put the color: parameter BEFORE the icon: parameter. So my code looked a bit more like:
    body: Center(
    child: IconButton(
    color: Colors.amber,
    iconSize: 75.0,
    onPressed: () {
    print('Why did you click me?');
    },
    icon: const Icon(Icons.alternate_email),
    As you can see, I increased the size of the icon as well. Hope it helps if anyone is having issues!

    • @playerx7689
      @playerx7689 Год назад +4

      Thank you so much!

    • @jasonchandler2754
      @jasonchandler2754 Год назад +6

      If you use null for onPressed, it won't do the click animation when you press it (granted it is not doing anything at the moment so it's not a big deal). To do onPressed () {}, you just have to remove the const before Center. Also, for the color part I did
      Style: ElevatedButton.styleFrom(
      background color: red,
      ),
      Nonetheless, there are no wrong ways to do it and as you said, it has changed quite a bit since the tutorial so cheers to us all finding ways around.

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

      My icons show up as a box with an x in the middle do you know what could be causing this?

    • @LastNameName-jr8hx
      @LastNameName-jr8hx 10 месяцев назад

      Where is your code? There is not code.

    • @xzatech
      @xzatech 9 месяцев назад +1

      child: ElevatedButton.icon(
      onPressed: () {},
      style: const ButtonStyle(
      backgroundColor: MaterialStatePropertyAll(Colors.green)
      ),

  • @yannsieyadjeu
    @yannsieyadjeu 10 месяцев назад +3

    This framework changes so rapidly. 50% of the functions introduced in this series have been depreciated already !!

  • @efaz7018
    @efaz7018 4 года назад +87

    WAIT!!!!!
    DONT LOOK AROUND!!
    THIS IS THE BEST PLAYLIST IN RUclips TO LEARN FLATTER!
    YOU ARE WELCOME.

  • @pademo57
    @pademo57 2 года назад +64

    RaisedButton has been deprecated
    Use instead ElevatedButton
    An example:
    child: ElevatedButton(
    onPressed: () {},
    child: Text('click me'),
    style: ElevatedButton.styleFrom(
    primary: Colors.lightBlue,
    ),
    Although without using color my button was already blue so you can substitute any of the other colors

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

      I get an error at the (){}

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

      tks you very much!

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

      @@TenDigitGrid it needs a child property

    • @andresfeliperiostamayo7307
      @andresfeliperiostamayo7307 Год назад +3

      @@TenDigitGrid because a function will be executed when the button is pressed, the content of the "Center" class will no longer be static, then the "const" keyword that precedes "Center" must be removed.

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

      @@andresfeliperiostamayo7307 ❤

  • @buildingcoolstuff6639
    @buildingcoolstuff6639 5 лет назад +54

    Your English is sooooooooo perfect Bless you for this channel

    • @gorgestboi1028
      @gorgestboi1028 4 года назад +9

      Maybe because he’s English 🤔

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

      @@gorgestboi1028 I think he meant understandable.

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

    The UI / UX part of me screamed internally with the contrast between the black text on that blue and then with the button that doesn't look like it's supposed to be clickable... (Love your tutorials as always, keep up the awesome work)

  • @enrac
    @enrac Год назад +35

    FYI, "RaisedButton" has now been replaced by "ElevatedButton"

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

      Should h'v looked at the comments earlier took me a hour nd a lot of chat gpt to fig tht out

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

    This is the best channel ever to study flutter. So proud to the creator of this channel.

  • @locksure
    @locksure 4 года назад +4

    Brilliant training. Very well paced, structured and delivered.

  • @aayushsingh8885
    @aayushsingh8885 5 лет назад +28

    Plzz upload videos as soon as possible I can't wait to become a flutter ninja

  • @GameplayForNarration
    @GameplayForNarration 4 года назад +4

    Thank you so much for all of these! You explain things so well and kindly!

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

    For anyone wondering, the mac equivilant of CRTL+Q is control+J

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

      when you accidentally press ⌘Q

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

    It should be elevated button in the newer versions of flutter for those that are wondering.

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

      What’s the equivalent for flatbutton in new version?

    • @BB-fg9ed
      @BB-fg9ed 3 года назад +1

      @@revengine4830 my android studio said it's text button

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

      @@BB-fg9ed yup it is

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

      Thanks

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

    Thank you very much for these step-by-step tutorials, sir ! Much appreciated !

  • @joaquimpaul7548
    @joaquimpaul7548 5 лет назад +2

    Thank you for playing a vital role in placing such kind of tutorials that are worth. God bless you, sir when I get my first cheque al make sure I avail myself on your Patreon. Honour master! under your guidance, I'm humbled to be a student as a ninja, Keep the tuts coming!.#From Downtown Nairobi

    • @NetNinja
      @NetNinja  5 лет назад +2

      Thank you so much :)

  • @whitesites
    @whitesites 3 месяца назад

    RaisedButton was depreciated, and replaced with ElevatedButton. I don't get why the developers behind Flutter, thought a name change was a good idea. Hopefully Net Ninja's Flutter MasterClass addresses these issues. Still best Flutter Tutorial Series ever!

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

    RaisedButton is now deprecated, You should use ElevatedButton.
    Heres an example.
    child: ElevatedButton(
    onPressed: () {
    print('Clicked');
    },
    child: Text('Click me'),
    style: ButtonStyle(
    backgroundColor: MaterialStateProperty.all(Colors.red),
    ))

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

    I am cambodian. I like your video . Thanks for your sharing .

  • @andriyfm
    @andriyfm 5 лет назад +33

    the best teacher 💎

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

    thank you you make me love flutter i promise i will learn it in 10 days

  • @CesarDominguez-y6s
    @CesarDominguez-y6s Год назад +2

    around 3:15
    body: Center(
    child: ElevatedButton(
    onPressed: (){},
    child: Text('click me'),
    style: ElevatedButton.styleFrom(backgroundColor: Colors.red),
    ),
    ),
    this is what worked for me.

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

    Thank you so much. I honestly believe you are a great teacher.

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

    Note:7:50
    body: Center(
    child: ElevatedButton.icon
    (onPressed: () {},
    icon: Icon(Icons.mail),
    label: Text('Mail Me'),
    style: ElevatedButton.styleFrom(
    primary: Colors.amber
    ),
    ),
    ),

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

    Brooooooooooooo, You are the best tutor i have ever seen , 👍👍👍👍👍 , keep it up👍👍, thanks for helping , 🙏🙏🙏🙏🙏, thanks for teaching

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

    thank you so much shaun .i learned both programming and english from you. much appreciated.please make a tutorial about typescript

  • @101kawsar
    @101kawsar 6 месяцев назад +1

    After so much trial and error 05:52
    ElevatedButton.icon(
    onPressed: () {
    print("OKay");
    },
    icon: const Icon(
    Icons.mail,
    ),
    label: Text("Okay"),
    style: const ButtonStyle(
    backgroundColor: WidgetStatePropertyAll(Colors.black),
    ),

  • @japarjarkynbyek8494
    @japarjarkynbyek8494 Год назад +3

    Some buttons are deprecated and not working as 2023 May
    So below are new ones:
    FlatButton -> TextButton
    RaisedButton -> ElevatedButton
    OutlineButton -> OutlinedButton

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

      What about the delete function that we achieve in the constructor ? i try to access the delete function inside the onPressed property and it said : "The argument type 'Function' can't be assigned to the parameter type 'void Function()?' . Hope you can help mate

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

      @@delfinlimriadi3840 Sorry mate, I have no idea which constructor you are mentioning. We don't have delete function in this course isn't it ? Or from another video # ?

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

      @@japarjarkynbyek8494 oh yeah sorry 😭 , it's another vidio and i got the answer from stackoverflow btw . Thanks for ur response 👍👍

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

    Very helpful tutorial so far, tho I haven't noticed the difference between Flat and Raised button

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

    Button Widget at tutorial is deprecated now, but your explain and example is awesome.

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

    Thank you ! You are doing a really good job "teaching".

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

    RaisedButton is now ElevatedButton. Everything else is the same

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

      style: ElevatedButton.styleFrom(primary: Colors.green), - this is for color. also keeps the text visible.

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

      @@eliudnjai how about flatbutton

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

    As of May 2021 the RaisedButton class in flutter is deprecated. ElevatedButton class should be used instead. The later class will eventually be removed from flutter SDK, so it is suggested to move to the newer class.

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

    at 2:03, The FlatButton, RaisedButton and OutlineButton widgets have been replaced by TextButton, ElevatedButton, and OutlinedButton respectively.

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

    your tutorial is really damn good and well explained. It helps me lot. Thank you!

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

    Thank you for these perfect clear tutorials.
    Is it possible to right align AppBar for Scaffold?
    my app language is rtl and this is better to have the title and leading start from the right edge.

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

    Android studio is laging like crazy after every minute it says not responding and freezes for couple of minutes
    My PC has 4 gb ram
    Intel i3 64 bit , nvidia GeForce GT 710
    What should I upgrade????
    and windows 10

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

    Incredibly helpful!

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

    thank you so much for this series! :D

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

    You are the best bro, thanks for everything

  • @Adam-il6le
    @Adam-il6le 4 года назад +1

    Nice tutorial, but I don't like that you delete parts of code after finishing explanation, when I followed thenewboston android tutorial (long time ago), he made all parts as separate screens accessible by buttons - that way you could find what you need in your old code,.. That approach is much better.

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

    Excelente curso , muy didactico gracias Mister Ninja

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

    thank you to create the videos that easy to learn.👏

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

    One of the best method....Thanks for helping sir.....

  • @neonyon9631
    @neonyon9631 5 лет назад +3

    Thank you.

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

    Million Thanks. Best videos to learn.

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

    These are great! Thank you so much!!!

  • @johnconnor9787
    @johnconnor9787 5 лет назад +1

    Awesome, as per usual

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

    Thanks a lot, very easy understanding

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

      Glad to hear that :) thanks for watching Letácio!

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

      @@NetNinja Nice Videos, but if you've got the time I'd really appreciate it if you had updated the videos that have new changes made, e.g. things like RaisedButton is now replaced/renamed to ElevatedButton. It might not be an issue for some but for newcomers, it's puzzling 🙂

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

    thank you so much bro you are the best of the best

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

    Do you have a modern version of these tutorials as a lot of these functions are deprecated now

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

    2022 October Update:
    ElevatedButton.icon(
    onPressed: () {},
    icon: Icon(Icons.mail),
    label: Text("Email me"),
    style: ElevatedButton.styleFrom(backgroundColor: Colors.black),
    ),
    #primary is now outdated.

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

    Awesome lesson but i was wondering how do i make the button play audio on pressed

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

    I love your tutorial so much

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

      Thank you so much!

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

    This course is perfect 😊 but can you update it pleaseeeee

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

    great Tutorials mate

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

    Thank you for the tutorials.
    sir! Icons are not showing?
    what to do?

  • @shakilkhanprogrammer
    @shakilkhanprogrammer 5 лет назад +1

    Child property is slightly confusing me

  • @JagSan.
    @JagSan. 4 года назад

    Awesome! Thanks!

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

    I love this tutorial :D

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

    really Great tutorial videos

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

    hey there, i saved this tutorial and i'm watching every single video . Thanks a lot for your videos, really helpful. But i have one tiny problem, when i click Ctrl+Q either in colors or icons i don't see colors i just have limited colors to use, and even in icons for example : airport_shuffle doesnt exists unless i wrote it manually ( doesn't exists in list). ( i downloaded the same android studio u mentioned in description down below the video) what should i do to solve this problem ?

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

      airport_shuffle might not exist but airport_shuttle does

  • @idontevenlikehavingagoogle8077
    @idontevenlikehavingagoogle8077 4 года назад +3

    but what is the mac equivalent of CRTL+Q?

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

      want it too

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

      @@kkkkk943 Ctrl J

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

    JULY 26, 2022
    For those struggling with ElevatedButton Color here's a code that works.
    ElevatedButton(
    onPressed: () {},
    style: ElevatedButton.styleFrom(
    primary: Colors.,
    ),
    child: Text('Click Me')

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

    The names of buttons have change check docs to get the new name

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

    The BEST EVER !

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

    Update, The RaisedButton method is deprecated. Use ElevatedButton instead.

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

    I think an updated tutorial would be great some of the commands are outdated

  • @VarunKV-ke2rl
    @VarunKV-ke2rl Год назад

    As per Flutter 3.0 and 3.1 these buttons are no more, available is there any other videos on Icons and Buttons

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

    Can we use customise icon for mail?

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

    RaisedButton is deprecated. Use ElevatedButton:
    child: ElevatedButton(
    onPressed: () {},
    child: Text('ClickMe'),
    )
    If you have errors on the onPressed: "Invalid constant value.", just remove the "const" word.

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

    Hi, bro....nice tutorial...thank you...
    We all know in the flutter template this a counter with floating action button. But, can you give some helps for this problem below? (or maybe this is a challenge for you).
    Make a page/screen with these requirements:
    1. several counter buttons in (let's say) a grid with button A, B, C etc.;
    2. each button will have each count (onPressed);
    3. a widget of total count from those pressed button;
    4. the buttons should be able to disable after pressed and re-enabled after specified time.
    Great thanks...

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

    Can you make a video about how to call C language from flutter?

  • @2005Azm
    @2005Azm 5 лет назад +1

    Great!

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

    perfect

  • @paanoop
    @paanoop 5 лет назад

    OMG Awesome videos

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

    does flutter allow us to show like icon on the corner of the message box like how it is displayed on iOS chat application? - thanks

  • @GaLzZy.
    @GaLzZy. 4 года назад

    Is it possible to create fully custom buttons ?

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

    With Flutter 2.0 RaisedButton is deprecated and replaced by ElevatedButton

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

    bless you

  • @abhishek_bhardwaj
    @abhishek_bhardwaj 5 лет назад

    sir please upload videos daily

    • @NetNinja
      @NetNinja  5 лет назад +5

      Working as fast as I can :)

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

    hey how do you add multiple buttons in the center

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

    I get a fail wich says 'the named parameter 'floatingActionButton' isn't defined' what should I do?

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

    hello, does it matter that you're doing this in "StatelessWidget"? what really is the significance of one or the other.

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

    beton yetmez betonnn....

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

    Why there is no icon property inside icon widget.
    In early lessons you told that we should have property inside widget.

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

    How can we turn the shape of the Raisedbutton.icon into a round ?

  • @aravind_k28
    @aravind_k28 5 лет назад

    Shaun how did you learn all this things.. Please answer me... I am always stuck at somepoint whenever I learn something new. Please reply

    • @brothercaleb
      @brothercaleb 5 лет назад +1

      Research 🙄

    • @user-og9nl5mt1b
      @user-og9nl5mt1b 5 лет назад +6

      everyone is stuck at some point , the point is , to give yourself some time for rest but don't ever give up .
      take a brake , but don't give up .
      if u are stuck then try to learn it from a different person or book or anything , maybe then u will understand it.

    • @aravind_k28
      @aravind_k28 5 лет назад

      @@user-og9nl5mt1b Thanks man

    • @Rassy_
      @Rassy_ 5 лет назад +3

      Cause he is always learning, even while making this video he has to go through the documentation at some point in order to provide us with the correct info. Learning never stops

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

    Probably half of the items you're working with no longer work with a 2022 version of the app. For example, RaisedButton is deprecated, so I comment that out. Can't compile. I don't know why, so I start removing things. I get to void main(); and still have errors. #$%@! Flutter seems like a really complicated framework. I looked for a 'hello world' app to start over: import 'package:flutter/material.dart';
    void main() {
    runApp(const GeeksForGeeks());
    }
    class GeeksForGeeks extends StatelessWidget {
    const GeeksForGeeks({Key? key}) : super(key: key);
    @override
    Widget build(BuildContext context) {
    return const MaterialApp(
    home: Center(child: Text('Hello World')),
    );
    }
    }

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

      there's so many keys! why? : GeeksForGeeks({Key? key}) : super(key: key); But at least I can compile and run.

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

    What if I want to use the icon on the right? in this method he was always on the left side

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

    I am getting parameter format not correct error, but the app was working just fine few days back, please help me

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

    Here's a button example in August 2022, that actually works, even though 'FlatButton' is deprecated: import 'package:flutter/material.dart';
    void main() {
    runApp(MyApp());
    }
    class MyApp extends StatefulWidget {
    @override
    _MyAppState createState() => _MyAppState();
    }
    class _MyAppState extends State {
    @override
    Widget build(BuildContext context) {
    return MaterialApp(
    home: Scaffold(
    appBar: AppBar(
    title: Text('Flutter FlatButton Example'),
    ),
    body: Center(child: Column(children: [
    Container(
    margin: EdgeInsets.all(25),
    child: FlatButton(
    child: Text('SignUp', style: TextStyle(fontSize: 20.0),),
    onPressed: () {},
    ),
    ),
    Container(
    margin: EdgeInsets.all(25),
    child: FlatButton(
    child: Text('LogIn', style: TextStyle(fontSize: 20.0),),
    color: Colors.blueAccent,
    textColor: Colors.white,
    onPressed: () {},
    ),
    ),
    ]
    ))
    ),
    );
    }
    }
    (love all those ))),}))s, like someone is a little () class crazy.

  • @user-og9nl5mt1b
    @user-og9nl5mt1b 5 лет назад +2

    should I learn angular 8.0 or react ? what your views on this ?

    • @akshay6019
      @akshay6019 5 лет назад +1

      Stick with flutter

    • @user-og9nl5mt1b
      @user-og9nl5mt1b 5 лет назад

      @@akshay6019 u are really an out of the box thinker .

  • @Mots-mot
    @Mots-mot 2 года назад

    how to put the text just below the icon like Settings icon and down to that the text 'Settings' ?

  • @mrKYLieRIck
    @mrKYLieRIck 8 месяцев назад

    omg thats insane why flutter keeps changing the properties??

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

    How to change a button label dynamically?

  • @MdAkter-ln4vv
    @MdAkter-ln4vv 3 года назад

    Nice video

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

    What does the phrase 'as well' mean?

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

      Hey, it means 'also', or 'in addition to' - I'm not sure what context I used it in, if that explanation doesn't make sense, let me know where I say it in the video and I will check :)

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

    I like to know how to do an iconButton but the icon is an asset or an image