A collection of links to the "Master the JavaScript Interview" series of medium stories by Eric Elliott.
Install Visual Studio Code. For one section of the course I'll go some of how VSCode and containers work well together. The rest of the course you can use whatever editor you want.
Please make sure you have the following things installed and ready to go!
- For Mac: Docker Desktop Community
- For Linux: Docker Engine Community
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Scaffold( | |
appBar: AppBar( | |
title: AutoSizeText('Doctors List'), | |
bottom: PreferredSize(child: Row(children: <Widget>[ | |
customButton((){},Icons.filter,'Filter'), | |
customButton((){},Icons.filter,'Filter'), | |
customButton((){},Icons.filter,'Filter'), | |
],), preferredSize: Size.fromHeight(70)), | |
) | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Scaffold( | |
appBar: AppBar( | |
title: AutoSizeText('Doctors List'), | |
bottom: PreferredSize(child: Row(children: <Widget>[ | |
customButton((){},Icons.filter,'Filter'), | |
customButton((){},Icons.filter,'Filter'), | |
customButton((){},Icons.filter,'Filter'), | |
],), preferredSize: Size.fromHeight(70)), | |
) | |
); |