3
Pragmatic Flutter: Building Cross-Platform Mobile Apps for Android, iOS, Web & Desktop by Priyanka Tyagi @ptyagi13
Publisher : CRC Press @CRCPress; 1st edition (August 13, 2021)
English | 2021 | ISBN: 978-0367612092 | 353 Pages routledge.com/Pragmatic-Flut…
4
Modern App Development with Dart and Flutter 2: A Comprehensive Introduction to Flutter by Dieter Meiller @Plexxo
Publisher: De Gruyter Oldenbourg
June 21, 2021
English/German | 2021 | ISBN: 9783110721331 | 237
German: degruyter.com/document/isbn/…
English: degruyter.com/document/doi/1…
9
Mobile Deep Learning with TensorFlow Lite, ML Kit and Flutter by Anubhav Singh @xprilion, Rimjhim Bhadani @bhadani_rimjhim
Publication date: April 2020
Publisher Packt @PacktPub
English | 2020 | ISBN: 9781789611212 | 380 Pages packtpub.com/product/mobile…
10
Programming Flutter: Native, Cross-Platform Apps the Easy Way (The Pragmatic Programmers) by Carmine Zaccagnino @carminezacc
Publication date: Feb 25, 2020
English | 2020 | ISBN: 978-1680506952 | 370 Pages cutt.ly/bWWgEu1
11
Flutter: Guida allo sviluppo di app performanti e cross-platform (Italian Edition) by Carmine Zaccagnino @carminezacc
Publication date: Nov 24, 2020
Italian | 2020
15
Flutter for Beginners - Second Edition
Flutter 2, Dart (null safety), 2nd Edition
by Thomas Bailey, Alessandro Biessek
Publication date 28 Sep 2021
Publisher Packt @PacktPub
English | 2021 | ISBN: 9781800565999 | 428 Pages packtpub.com/product/flutte…
16
Beginning Flutter: A Hands-On Guide to App Development 1st Edition by Marco L. N @JediPixels
English | 2019 | ISBN: 978-1119550822 | 528 Pages
Marco, we love your book, but we wait for the second edition cutt.ly/ZWWIxHM
25
Beginning Flutter with Dart: A Step by Step Guide for Beginners to Build an Android or iOS Mobile Application (Flutter, Dart and Algorithm Book 1)
Sanjib Sinha @sanjibsinha
#Flutter#Dart#CSS
CSS vs Flutter.
How to embed CSS examples in the text widget.
My success story.
Of course, you can find 15 awesome examples below.
🧵👇
1 #Flutter#Dart#CSS
When I found an example, I thought, why not?
Shadows in CSS has this syntax:
// text-shadow: [horizontal offset] [vertical offset] [blur radius] [color];
// text-shadow: 0 2px 1px #747474,
// rgbo: 0px -4px 10px rgba(255,255,255,0.3);
2 #Flutter#Dart#CSS
Each shadow in the Text widget has 5 lines of code.
Shadow(
color: Color(0xFFFFFFFF),
offset: Offset(1.0, 1.0),
blurRadius: 1.0,
),
It's all good, but I broke my head when I found the example with 26 shadows.
WTF... 🤯🤯🤯
#Flutter#Dart#CSS
CSS vs Flutter.
Flutter the containers with shadows.
How to create BoxShadow with CSS box-shadow?
21 amazing containers with CSS box-shadow in Flutter for the next app.
🧵👇
Let's study #Flutter.
How to remember new buttons in Flutter?
Old RaisedButton >>> ElevatedButton
Old FlatButton >>> TextButton
Old OutlinedButton >>> OutlinedButton
Three examples below & in DartPad🧵👇
#flutter
Let's study #Dart.
final, const & late in 3+ steps.
🧵👇
1/1 What is the difference between final and const?
A constant variable must be initialized at the time of declaration. It's a compile-time constant. A final variable can be initialized later, but only once when the first time it’s used.
1/2 void main() {
final int x;
const int y = 1;
x = 8; // ok
y = 2; // error: Constant variables can't be assigned a value.
x = 9; // error: The final variable 'a' can only be set once.
}