A Pen by luis barqueira on CodePen.
This file contains 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
import 'dart:convert'; | |
// article - How to parde Json in Flutter | |
// https://www.filledstacks.com/snippet/how-to-parse-json-in-flutter/ | |
void main() { | |
var jsonData = '{"name" : "Dane", "alias" : "FilledStacks"}'; | |
print(jsonData); | |
var parsedJson = json.decode(jsonData); |
This file contains 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
C:\codevscode\network_async\Clima-Flutter>git remote -v | |
origin https://github.com/londonappbrewery/Clima-Flutter.git (fetch) | |
origin https://github.com/londonappbrewery/Clima-Flutter.git (push) | |
C:\codevscode\network_async\Clima-Flutter>git remote rm origin | |
C:\codevscode\network_async\Clima-Flutter>git remote -v | |
C:\codevscode\network_async\Clima-Flutter>git remote -v | |
origin https://github.com/lbarqueira/Clima-Flutter.git (fetch) |
This file contains 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
Microsoft Windows [Version 6.1.7601] | |
Copyright (c) 2009 Microsoft Corporation. All rights reserved. | |
C:\codevscode\portfolio_pwa>flutter clean | |
Deleting build... 4ms | |
C:\codevscode\portfolio_pwa>git remote -v | |
origin https://github.com/lbarqueira/portfolio_pwa.git (fetch) | |
origin https://github.com/lbarqueira/portfolio_pwa.git (push) |
This file contains 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
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
MaterialApp( | |
debugShowCheckedModeBanner: false, | |
title: 'My app', // used by the OS task switcher | |
home: SafeArea( | |
child: MyScaffold(), | |
), |
This file contains 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
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
MaterialApp( | |
debugShowCheckedModeBanner: false, | |
title: 'Flutter Tutorial', | |
home: TutorialHome(), | |
), | |
); |
This file contains 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
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
MaterialApp( | |
debugShowCheckedModeBanner: false, | |
title: 'Flutter Tutorial', | |
home: TutorialHome(), | |
), | |
); |
This file contains 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
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
MaterialApp( | |
debugShowCheckedModeBanner: false, | |
title: 'Flutter Tutorial', | |
home: Scaffold( | |
body: Container( | |
decoration: BoxDecoration(color: Colors.cyan), |
This file contains 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
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
MaterialApp( | |
debugShowCheckedModeBanner: false, | |
title: 'Flutter Tutorial', | |
home: Scaffold( | |
body: Container( | |
decoration: BoxDecoration(color: Colors.cyan), |
This file contains 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
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
MaterialApp( | |
debugShowCheckedModeBanner: false, | |
title: 'Flutter Tutorial', | |
home: Scaffold( | |
body: Container( | |
decoration: BoxDecoration(color: Colors.cyan), |
OlderNewer