All language subtitles for 002 More Flutter Installation_en

af Afrikaans
ak Akan
sq Albanian
am Amharic
ar Arabic
hy Armenian
az Azerbaijani
eu Basque
be Belarusian
bem Bemba
bn Bengali
bh Bihari
bs Bosnian
br Breton
bg Bulgarian
km Cambodian
ca Catalan
ceb Cebuano
chr Cherokee
ny Chichewa
zh-CN Chinese (Simplified)
zh-TW Chinese (Traditional)
co Corsican
hr Croatian
cs Czech
da Danish
nl Dutch
en English
eo Esperanto
et Estonian
ee Ewe
fo Faroese
tl Filipino
fi Finnish
fr French
fy Frisian
gaa Ga
gl Galician
ka Georgian
de German
el Greek
gn Guarani
gu Gujarati
ht Haitian Creole
ha Hausa
haw Hawaiian
iw Hebrew
hi Hindi
hmn Hmong
hu Hungarian
is Icelandic
ig Igbo
id Indonesian
ia Interlingua
ga Irish
it Italian
ja Japanese
jw Javanese
kn Kannada
kk Kazakh
rw Kinyarwanda
rn Kirundi
kg Kongo
ko Korean
kri Krio (Sierra Leone)
ku Kurdish
ckb Kurdish (Soranî)
ky Kyrgyz
lo Laothian
la Latin
lv Latvian
ln Lingala
lt Lithuanian
loz Lozi
lg Luganda
ach Luo
lb Luxembourgish
mk Macedonian
mg Malagasy
ms Malay
ml Malayalam
mt Maltese
mi Maori
mr Marathi
mfe Mauritian Creole
mo Moldavian
mn Mongolian
my Myanmar (Burmese)
sr-ME Montenegrin
ne Nepali
pcm Nigerian Pidgin
nso Northern Sotho
no Norwegian
nn Norwegian (Nynorsk)
oc Occitan
or Oriya
om Oromo
ps Pashto
fa Persian
pl Polish
pt-BR Portuguese (Brazil)
pt Portuguese (Portugal)
pa Punjabi
qu Quechua
ro Romanian
rm Romansh
nyn Runyakitara
ru Russian Download
sm Samoan
gd Scots Gaelic
sr Serbian
sh Serbo-Croatian
st Sesotho
tn Setswana
crs Seychellois Creole
sn Shona
sd Sindhi
si Sinhalese
sk Slovak
sl Slovenian
so Somali
es Spanish
es-419 Spanish (Latin American)
su Sundanese
sw Swahili
sv Swedish
tg Tajik
ta Tamil
tt Tatar
te Telugu
th Thai
ti Tigrinya
to Tonga
lua Tshiluba
tum Tumbuka
tr Turkish
tk Turkmen
tw Twi
ug Uighur
uk Ukrainian
ur Urdu
uz Uzbek
vi Vietnamese
cy Welsh
wo Wolof
xh Xhosa
yi Yiddish
yo Yoruba
zu Zulu
Would you like to inspect the original subtitles? These are the user uploaded subtitles that are being translated: 1 00:00:00,780 --> 00:00:04,560 In the Lessa section, we installed the Flutter SDK on our local machine. 2 00:00:05,090 --> 00:00:10,890 We also set up a path variable which is going to allow us to execute flutter from our command line or 3 00:00:10,890 --> 00:00:13,720 power shell or get Bashour, whatever it is that we use. 4 00:00:14,160 --> 00:00:15,990 So hopefully you just restarted your machine. 5 00:00:16,260 --> 00:00:21,270 If you now open your command line back open, you should be able to execute the command flutter and 6 00:00:21,270 --> 00:00:24,210 then see a list of different commands that are available to us appear. 7 00:00:24,750 --> 00:00:28,020 If you see a message that says command not found or command not recognized. 8 00:00:28,320 --> 00:00:31,950 Chances are that something went wrong while you were setting up your path variable. 9 00:00:31,950 --> 00:00:35,140 And so you'll want to double check how you deserve your path variable. 10 00:00:35,370 --> 00:00:39,420 Again, you'll want to make sure that you're pointing at your bin directory. 11 00:00:40,530 --> 00:00:45,180 All right, so now that we've got that done, we're going to use this new flutter command line tool 12 00:00:45,180 --> 00:00:49,530 to generate a new application and we're going to be making use of in just a moment. 13 00:00:50,430 --> 00:00:54,810 So at my terminal, I'm again inside of a workspace directory of sorts. 14 00:00:55,470 --> 00:00:58,370 This does not have to be called specifically workspace. 15 00:00:58,380 --> 00:01:02,490 That's just the folder that I use to put all my code in on my local machine. 16 00:01:03,110 --> 00:01:07,520 So anywhere on your computer that you want to put your code, you can change into that folder. 17 00:01:08,130 --> 00:01:15,920 And then we're going to generate a new flutter application by running the command letter, create picks 18 00:01:16,530 --> 00:01:19,400 now picks right here is the name of the project that we're going to create. 19 00:01:19,410 --> 00:01:23,850 And as my guess, the first project we're going to work on is going to work a little bit around with 20 00:01:23,850 --> 00:01:24,470 pictures. 21 00:01:25,200 --> 00:01:30,750 So I will run that command that will generate the project and that's going to automatically install 22 00:01:30,750 --> 00:01:32,940 some different dependencies to that project as well. 23 00:01:33,870 --> 00:01:36,600 So final list out all the files and folders inside of this directory. 24 00:01:36,750 --> 00:01:39,360 You'll see that there is now a PEX folder in there. 25 00:01:39,990 --> 00:01:45,480 If I change into that PEX folder, I can list out my files and folders again and I'll see a couple of 26 00:01:45,480 --> 00:01:46,860 different files and folders. 27 00:01:47,370 --> 00:01:51,810 This is all the pre generated code that comes along any time that we create a new project. 28 00:01:52,500 --> 00:01:53,190 So that's it. 29 00:01:53,190 --> 00:01:56,370 We've got a new empty flutter application ready to go. 30 00:01:56,850 --> 00:02:01,350 Now, the last thing we have to do is get an Android emulator up and running on our machine so we can 31 00:02:01,350 --> 00:02:03,450 actually run and test out this application. 32 00:02:03,870 --> 00:02:05,700 So it's going to be the last step that we have to go through. 33 00:02:07,540 --> 00:02:11,710 In this section, we're going to one last thing here, we're going to start downloading the Android 34 00:02:11,710 --> 00:02:15,130 studio, which is what we're going to use to set up our Android emulator. 35 00:02:15,460 --> 00:02:19,080 And then as soon as we start the download, it's going to take a couple of minutes to download. 36 00:02:19,270 --> 00:02:23,390 So I'll let you kind of start it up and we'll take a break into the next section. 37 00:02:24,040 --> 00:02:25,020 So, again, at Flitter. 38 00:02:25,450 --> 00:02:27,850 Oh, I'm going to find section marked set up. 39 00:02:28,510 --> 00:02:30,400 We install Android studio right here. 40 00:02:31,740 --> 00:02:37,230 And then we are prompted to download and install the Android studio so you can follow that link and 41 00:02:37,230 --> 00:02:41,590 right here, right in the center of the screen, we're looking for download download Android studio. 42 00:02:42,000 --> 00:02:46,410 So go ahead and go through that process, download that file and I'll catch you in the next section. 4467

Can't find what you're looking for?
Get subtitles in any language from opensubtitles.com, and translate them here.