Learn Flutter with Me
Learn Flutter with Me
  • 51
  • 395 925
Images in Flutter
In this video I show you how to add an image from the internet as well as a local image stored in the app directory.
Instagram:
learnflutterwithme
Twitter:
flutterwithme
Stuff I use for this channel (Affiliate Links)
SanDisk 1TB SSD amzn.to/3j1U8py
Elgato Cam Link 4K amzn.to/37EyqBK
Logitech G600 Mouse amzn.to/36DYFYz
Logitech G Pro Keyboard amzn.to/3saco38
Macbook Pro M1 13" amzn.to/36GzbKc
Neewer Mic Arm amzn.to/3z7RvIm
Davinci Resolve amzn.to/3erEb9I
Adobe Photoshop Elements amzn.to/3BkPKth
มุมมอง: 350

วีดีโอ

Flutter Navigation: Named Routes
มุมมอง 4986 หลายเดือนก่อน
My son and I have been working on and off for the last year on a game based in Space and we're starting to work on the Client which will of course be in Flutter. We are starting by setting up Navigation, and we are using Named Routes. Introduction to Navigation: th-cam.com/video/oskdrY1shV0/w-d-xo.html Navigation 2.0: th-cam.com/video/oskdrY1shV0/w-d-xo.html Instagram: learnflutte...
Drawer in Flutter!
มุมมอง 1897 หลายเดือนก่อน
I'm back! Well hopefully. This is just a simple drawer in Flutter. #flutter #learnflutter Stuff I use for this channel (Affiliate Links) SanDisk 1TB SSD amzn.to/3j1U8py Elgato Cam Link 4K amzn.to/37EyqBK Logitech G600 Mouse amzn.to/36DYFYz Logitech G Pro Keyboard amzn.to/3saco38 Macbook Pro M1 13" amzn.to/36GzbKc Neewer Mic Arm amzn.to/3z7RvIm Davinci Resolve amzn.to/3erEb9I Adobe Photoshop Ele...
Dart/Flutter Enums Explained in 5 Minutes!
มุมมอง 4.3Kปีที่แล้ว
A look at Enums in Dart and Flutter. Enums (short for Enumerations) are a set of related constants. In this video we will talk all about enums - why you might choose to use enums over just strings or constants alone for example, as well as how to use them with a Switch Case statement and a look at Enhanced Enums. 00:00 Intro and Explanation 00:47 Example with Strings 01:52 Example with Constant...
Unlock Flutter's Future with Material 3! | Quick Look
มุมมอง 1.8Kปีที่แล้ว
Let's take a quick look at a few examples of how some widgets look in Material 2 vs Material 3 and how to enable Material 3 in your project! Source Code learnflutterwithme.com/material3-quick-look #flutter #learnflutter Instagram: learnflutterwithme Twitter: flutterwithme Stuff I use for this channel (Affiliate Links) SanDisk 1TB SSD amzn.to/3j1U8py Elgato Cam Link 4K ...
Flutter Theming | How to Use Flutter Themes
มุมมอง 1.4Kปีที่แล้ว
Flutter theming, including setting up the light theme or dark theme, how to change the theme based on the setting on your mobile phone, and 00:00 Intro, Setup, Theme Property 01:48 ThemeMode 03:01 Customizing your Theme 04:07 Text Theme, Google Fonts 05:18 Outro Source Code and Transcript: learnflutterwithme.com/themes #flutter #learnflutter Instagram: learnflutterwithme Twitter: ...
The old chair was on it's last leg...
มุมมอง 348ปีที่แล้ว
My old chair had seen better days so it was time to get a new one. What do you think? Amazon Basics Chair (Affiliate Link) amzn.to/3gCVRDr KERDOM Home Desk Chair (Affiliate Link) amzn.to/3tX9pNg Instagram: learnflutterwithme Twitter: flutterwithme Stuff I use for this channel (Affiliate Links) SanDisk 1TB SSD amzn.to/3j1U8py Elgato Cam Link 4K amzn.to/37EyqBK Logitech ...
If / Else, Switch, Ternary (Flutter App From Scratch: Grocery List App, Episode 7)
มุมมอง 928ปีที่แล้ว
In this Episode we discuss If Statements, Else, Else If, Switch Statements and Ternary Operators. 00:00 Introduction 00:57 The IF Statement 02:49 Else 04:14 Else IF 08:19 Switch 09:30 Ternary Full Course (so far): learnflutterwithme.com/course/grocery-list-app #flutter #learnflutter Instagram: learnflutterwithme Twitter: flutterwithme Stuff I use for this channel (Affi...
Getting my Cracked MacBook working again!
มุมมอง 175ปีที่แล้ว
The KVM for the MacBook I use to make videos for the channel went out and I had to find another solution since the MacBook has a cracked screen. So I bought a budget keyboard and mouse and just plugged it directly into my monitor with plans to use the built in input switch between it and my PC. Products featured in the video: Logitech Pebble i345 amzn.to/3UUBXSQ Tecknet 3200 DPI Computer Mouse ...
Let's do CRUD (Flutter App From Scratch: Grocery List App, Episode 6)
มุมมอง 2Kปีที่แล้ว
In this Episode we set our app up for CRUD, which is the ability to Create an entry, Read entries, Update an entry and Delete an Entry. 00:00 Intro and Convert to Stateful 00:59 Creating a Record 03:13 Deleting a Record 04:03 Updating a Record Full Course (so far): learnflutterwithme.com/course/grocery-list-app #flutter #learnflutter Instagram: learnflutterwithme Stuff I use for t...
An introduction to Flutter State (Flutter App From Scratch: Grocery List App, Episode 5)
มุมมอง 3K2 ปีที่แล้ว
In this episode we discuss what State is in relation to Flutter. We give a brief explanation of what State is, build a sample app with a stateless widget, convert it to a stateful widget and set the state. Full Course (so far): learnflutterwithme.com/course/grocery-list-app #flutter #learnflutter Instagram: learnflutterwithme Twitter: flutterwithme Stuff I use for this...
Using a ListView to add a Grocery List (Flutter App From Scratch: Grocery List App, Episode 4)
มุมมอง 3.8K2 ปีที่แล้ว
In Episode 4 we take the information we got from Episode 3 about variables, lists and Maps to create a grocery list filled with dummy Groceries and dummy prices. For the list we start with a ListView and then we convert it to a ListView Builder. After the ListView we add a TextField and ElevatedButton to prepare to be able to add groceries to our list. We also discuss constants and briefly disc...
Variables, Lists and Maps in Flutter/Dart (Grocery List App, Episode 3 / Flutter App From Scratch)
มุมมอง 2.3K2 ปีที่แล้ว
In Episode 3 we take a close look at variables, lists and maps which are used to store data temporarily in your app. 00:00 Intro 00:14 Variables 04:45 Lists 09:16 Maps Full Course (so far): learnflutterwithme.com/course/grocery-list-app Instagram: learnflutterwithme Twitter: flutterwithme Stuff I use for this channel (Affiliate Links) SanDisk 1TB SSD amzn.to/3j1U8py El...
Grocery List App, Episode 2: The Layout (Flutter App From Scratch)
มุมมอง 2.4K2 ปีที่แล้ว
The second episode in my "Flutter App From Scratch" we start building our app! I choose what design style I'm going with and Get the AppBar, body, and BottomNavigationBar added! To get help installing Flutter, creating your app, or to watch the other videos in the course so far, click here: learnflutterwithme.com/course/grocery-list-app #flutter #learnflutter Instagram: learnflutt...
Flutter App From Scratch: Grocery list App (Episode 1, Hello World!)
มุมมอง 3.3K2 ปีที่แล้ว
Flutter App From Scratch: Grocery list App (Episode 1, Hello World!)
Installing Flutter on an Intel based Mac
มุมมอง 10K2 ปีที่แล้ว
Installing Flutter on an Intel based Mac
WSL2 | Linux in Windows without a virtual machine | Flutter Web Example
มุมมอง 1.2K2 ปีที่แล้ว
WSL2 | Linux in Windows without a virtual machine | Flutter Web Example
Flutter Widget Quickie: Fluent_UI Button
มุมมอง 1.2K2 ปีที่แล้ว
Flutter Widget Quickie: Fluent_UI Button
Flutter Firebase: Cloud Firestore on Windows Part 2
มุมมอง 3.6K2 ปีที่แล้ว
Flutter Firebase: Cloud Firestore on Windows Part 2
Flutter Firebase: Cloud Firestore Basics on Windows
มุมมอง 16K2 ปีที่แล้ว
Flutter Firebase: Cloud Firestore Basics on Windows
Flutter Windows Desktop Tutorial - Open File Dialog with File Picker
มุมมอง 9K2 ปีที่แล้ว
Flutter Windows Desktop Tutorial - Open File Dialog with File Picker
Flutter 2.10: Flutter Desktop App on Windows
มุมมอง 23K2 ปีที่แล้ว
Flutter 2.10: Flutter Desktop App on Windows
If Statements (Dart, Flutter)
มุมมอง 2.4K2 ปีที่แล้ว
If Statements (Dart, Flutter)
A look at Flutter 2.5's MaterialBanner
มุมมอง 6992 ปีที่แล้ว
A look at Flutter 2.5's MaterialBanner
Flutter Form Fields and Form Validation, with Null Safety
มุมมอง 6K3 ปีที่แล้ว
Flutter Form Fields and Form Validation, with Null Safety
Flutter Widget Quickie: floatingActionButton
มุมมอง 5K3 ปีที่แล้ว
Flutter Widget Quickie: floatingActionButton
Working with Dates in Flutter
มุมมอง 5K3 ปีที่แล้ว
Working with Dates in Flutter
Flutter Navigator 2.0 Example, with some Provider 6
มุมมอง 8K3 ปีที่แล้ว
Flutter Navigator 2.0 Example, with some Provider 6
A quick look at Flutter 2.5
มุมมอง 1.2K3 ปีที่แล้ว
A quick look at Flutter 2.5
Intro to Flutter Navigation & Routes | Navigator 1.0 and 2.0
มุมมอง 15K3 ปีที่แล้ว
Intro to Flutter Navigation & Routes | Navigator 1.0 and 2.0

ความคิดเห็น

  • @mitotv6376
    @mitotv6376 9 วันที่ผ่านมา

    Nicee

  • @121Gamerscom
    @121Gamerscom หลายเดือนก่อน

    Straight forward step by step excellent tutorial thanks you subscribed cant wait to see some flutter apps with web admin panel or something like it :)

  • @Nanashi-rq7lk
    @Nanashi-rq7lk หลายเดือนก่อน

    Great explanation

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

    Deserved to be Liked and Subscribed ... Done ... Subscribed 👍

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

    Nice tutorial thanks. Would be nicer without this annoying loud background music, I hardly followed what you were saying.

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

    Hi, thanks for the course, I learned a lot, you teach very well. Why you stoped here?

  • @MdShaidUrRahman-nr1vh
    @MdShaidUrRahman-nr1vh หลายเดือนก่อน

    Good

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

    This is good but I was looking for Auto Routes using the libraries auto_route, do you have a video for this?

  • @moamnhmdany
    @moamnhmdany 2 หลายเดือนก่อน

    noisy noisy why u put music so noisy

  • @kilimankili
    @kilimankili 2 หลายเดือนก่อน

    Excellent

  • @tGoldenPhoenix
    @tGoldenPhoenix 2 หลายเดือนก่อน

    Thank you.

  • @musamaluleke
    @musamaluleke 2 หลายเดือนก่อน

    What a great tutorial. Thanks another.

  • @azam2390
    @azam2390 2 หลายเดือนก่อน

    thanks 😀

  • @thebicycleman8062
    @thebicycleman8062 3 หลายเดือนก่อน

    you are a really good teacher

  • @AdhamFaisal875
    @AdhamFaisal875 3 หลายเดือนก่อน

    please upload source code

  • @SQQuest
    @SQQuest 4 หลายเดือนก่อน

    Hi , Sir can I talk to you. plzz reply me...😔

  • @gravitashebynimus3425
    @gravitashebynimus3425 4 หลายเดือนก่อน

    pretty cool

  • @better_notes182
    @better_notes182 4 หลายเดือนก่อน

    Thanks a lot, much love from India ❤

  • @acornerofherheart-jr9pl
    @acornerofherheart-jr9pl 4 หลายเดือนก่อน

    how to call future me4thod of stateful widget in another stateful class without using static before the method?

  • @Krish_chotaliya
    @Krish_chotaliya 5 หลายเดือนก่อน

    Nice tutorial for the basic concept of state. Thanks. @LearnFlutterwithMe

  • @Krish_chotaliya
    @Krish_chotaliya 5 หลายเดือนก่อน

    thank you

  • @zond_amond
    @zond_amond 6 หลายเดือนก่อน

    Thanks!

  • @CatsVibes100
    @CatsVibes100 6 หลายเดือนก่อน

    Clear and concise subscribed ✨

  • @1PercentCeo
    @1PercentCeo 6 หลายเดือนก่อน

    I rarely comment on videos, but you're a great teacher.

  • @HalfTime-gx1ui
    @HalfTime-gx1ui 6 หลายเดือนก่อน

    Very Useful ❤

  • @AbinStanislaus
    @AbinStanislaus 6 หลายเดือนก่อน

    very helpful.

  • @aresjoel8720
    @aresjoel8720 6 หลายเดือนก่อน

    Great explanations, showing gradually what happen when trying to change state of stateless widgets. Tons of thx

  • @Raymond-rl8ks
    @Raymond-rl8ks 6 หลายเดือนก่อน

    Bro...I learned a lot! Keep up the great work!

  • @AdhamFaisal875
    @AdhamFaisal875 6 หลายเดือนก่อน

    thank you need about this package google_sign_in for next video

  • @Almassa-jt2sv
    @Almassa-jt2sv 6 หลายเดือนก่อน

    thank you sooooo much ☺👍👍

  • @rahulCoding
    @rahulCoding 7 หลายเดือนก่อน

    Thank you

  • @huynhphuso
    @huynhphuso 7 หลายเดือนก่อน

    where file groceries.txt ?

  • @huynhphuso
    @huynhphuso 7 หลายเดือนก่อน

    please help me !

    • @huynhphuso
      @huynhphuso 7 หลายเดือนก่อน

      I not save data.

  • @CanCaner163
    @CanCaner163 7 หลายเดือนก่อน

    how can I add the back button while I am using pushNamed from routers list, as it auto added that button before with Navigator.push()

  • @aliabeno8106
    @aliabeno8106 7 หลายเดือนก่อน

    Thank you very much. This topic exhausted me so much that I almost stopped learning. You helped me. Thank you very much😄😄😄

  • @AdhamFaisal875
    @AdhamFaisal875 7 หลายเดือนก่อน

    [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: 'package:flutter/src/widgets/navigator.dart':

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

    Great tutorial, Love your way of explaining things. Please keep going

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

    Thanks a lot

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

    cool Destiny shirt bro

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

    I must have viewed over 30 TH-cam videos about Flutter until I came across yours. Thank you very much for all your videos. I like the no frills, just the topic and that you always start with a fresh new code from the beginning and you share the completed code. I also like that you explain as you work. Thank you.

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

    I just don't know why the dialog doesnt open when button is tapped.am using android emulator

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

    hmm, i'm trying this with 3 classes: 1 class "textbar with the var", 2 class " the buton with the var = "newtext" , and the 3 class wrap 1class in column and stuff. this dont work on that :\

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

    I am a newbie. Is it necessary to install Android Studio if I do not need to build an Android app?

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

    im native spanish lenguage, and I love your simplest explanation, its boring long videos where the explanation is complicated and unnecesary

  • @Hash...909
    @Hash...909 9 หลายเดือนก่อน

    nice video bro keep going❤

  • @David-w1s3z
    @David-w1s3z 10 หลายเดือนก่อน

    Awesome. Thanks for the walkthrough. --- FYI -- the code works in Dec. 2023. :)

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

    how can I add the Flutter: Windows app to the open with menu?

  • @BitByBit1808
    @BitByBit1808 11 หลายเดือนก่อน

    Thanks for the clear explanation!

  • @rafliiskandarkavarera2886
    @rafliiskandarkavarera2886 11 หลายเดือนก่อน

    then how to read the file?