SlideShare a Scribd company logo
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
OK, Flutter.
Welcome to the All Platform era
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Pon
Teerasej Jiraphatchandej

nextflow.in.th
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Ah… Eh? Oh…
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Now. How. Adapt.
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Now.
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Platforms
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow By Cricilla
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
All Platforms
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Demo
https://nextflow.in.th/2018/capacitor-with-ionic-beginner-thai/
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
60fps
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
How.
#mobileconf18
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
UI & Logic
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Concept always work.
#mobileconf18
OOP
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
#mobileconf18
class TeerasejClass extends PapaClass {
String IAmProperty;
void IDoNothing() {
}
}
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
User Interface
#mobileconf18 www.nextflow.in.th | facebook.com/nextflowIcon made by Smashicons from www.flaticon.com 
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text(
'You have pushed the button this many times:',
),
new Text(
'$_counter',
style: Theme.of(context).textTheme.display1,
),
],
),
),
floatingActionButton: new FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: new Icon(Icons.add),
),
);
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow By Jeff Kramer
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text(
'You have pushed the button this many times:',
),
new Text(
'$_counter',
style: Theme.of(context).textTheme.display1,
),
],
),
),
floatingActionButton: new FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: new Icon(Icons.add),
),
);
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
body: new Center(
child:
new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text(
'You have pushed the button this many times:',
),
new Text(
'$_counter',
style: Theme.of(context).textTheme.display1,
),
],
),
),
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Logic
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
// Start point
void main() {
runApp(new MyApp());
}
#mobileconf18
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
// Things we don't change it
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Widget();
}
}
#mobileconf18
// We think this will be changed a lot
class MyHomePage extends StatefulWidget {
@override
_MyHomePageState createState() {
return new _MyHomePageState();
}
}
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
// Let it go!
class _MyHomePageState extends State<MyHomePage> {
// properties
// methods
@override
Widget build(BuildContext context) {
return new Widget();
}
}
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Adapt.
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Package
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Native Integration
#mobileconf18
#mobileconf18
class MainActivity() : FlutterActivity() {
private val CHANNEL = "samples.flutter.io/battery"
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
MethodChannel(flutterView, CHANNEL).setMethodCallHandler { call, result ->
…
result.success(…)
}
}
}
#mobileconf18
@implementation AppDelegate
- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions: … {
FlutterViewController* controller
= (FlutterViewController*)self.window.rootViewController;
FlutterMethodChannel* batteryChannel = [FlutterMethodChannel
methodChannelWithName:@"samples.flutter.io/battery"
binaryMessenger:controller];
[batteryChannel setMethodCallHandler:^(FlutterMethodCall* call, FlutterResult result) {
result(@batterylevel)
}];
…
}
#mobileconf18
static const MethodChannel methodChannel =
MethodChannel('samples.flutter.io/battery');
Future<Null> _getBatteryLevel() async {
String batteryLevel;
final int result
= await methodChannel.invokeMethod('getBatteryLevel');
}
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Siri Shortcut
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Demo
https://nextflow.in.th/2018/google-flutter-siri-shortcut-mini-demo/
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Now. How. Adapt.
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Resource
• Flutter Official Website https://flutter.io 

• Thailand Flutter Developer 

• https://github.com/teerasej/awesome-flutter (รวมข้อมูลการเรียนรู้
ต่างๆ ของ Flutter แปลไทย)

• Youtube สอน Flutter ภาษาไทย https://goo.gl/mzdR5Y
#mobileconf18 www.nextflow.in.th | facebook.com/nextflow
Thank you :)
teerasej
www.nextflow.in.th

More Related Content

PPTX
SEO Before Yoast: WordCamp Rhode Island
PPTX
WordCamp Baltimore 2016
PDF
Igniteslides
PPTX
How to Make WordPress Your Friend
DOCX
Link spss
PDF
Designing Responsive Websites
KEY
Responsive Web Design & Typography
PDF
UX & Responsive Design
SEO Before Yoast: WordCamp Rhode Island
WordCamp Baltimore 2016
Igniteslides
How to Make WordPress Your Friend
Link spss
Designing Responsive Websites
Responsive Web Design & Typography
UX & Responsive Design

Similar to OK Flutter, Welcome to All platform era (11)

PDF
What da Frontend? - How to start learning Front-end technology without pain.
PDF
Telegraph Track - Progressive Web Apps 101
PDF
Facebook과 연동하기
PPT
PHP Presentation
PPTX
Browser-Based Virtual Reality April 2015
PPTX
VR Without Borders RIVER WebVR April 2015
PDF
2by1 grid
DOCX
1111 companies for good career
PDF
Platforms as Contracts
PDF
How To Use Roboform?
PPT
What da Frontend? - How to start learning Front-end technology without pain.
Telegraph Track - Progressive Web Apps 101
Facebook과 연동하기
PHP Presentation
Browser-Based Virtual Reality April 2015
VR Without Borders RIVER WebVR April 2015
2by1 grid
1111 companies for good career
Platforms as Contracts
How To Use Roboform?
Ad

More from Teerasej Jiraphatchandej (20)

PDF
Microsoft Power Page for Developer - ภาษาไทย
PDF
Azure DevOps with Power Automate - Guideline
PDF
Getting Started Azure Cognitive Service Container
PDF
Power App - Wrap Sneak peek
PDF
Software developer: Prepare for the real world
PDF
.NET Bangkok Meetup #42 - Extract information from your document with Azure F...
PDF
.NET Conference 2020 - Introduction to Azure Form Recognizer
PDF
Introduction to Webometrics
PDF
Front-end อะไรเนี้ย? - เริ่มต้นเรียนรู้ และเข้าใจโลกของ Front-end Development...
PDF
React native - What, Why, How?
PDF
เรียนรู้ Node JS แบบสบายๆ สำหรับผู้เริ่มต้น
PDF
Angular JS: First look เริ่มต้น Angular JS กันแบบสบายๆ
PDF
สร้าง Facebook Fan Page อย่างไร ให้ยั่งยืน [บรรยายในงาน LINE Creator Meeting 3]
PDF
Ionic framework for web developer
PDF
Current state of Adobe PhoneGap & Cordova (yes, iOS 8 too)
PDF
PhoneGap/Cordova: Push notification on Android
PDF
Responsive Image: ปัญหา แนวคิด และวิธีใช้งานในปัจจุบัน (กันยา 2014)
PDF
เร่ิมต้นสร้าง Facebook page สำหรับ line creator
PDF
เริ่มต้นสร้างแอพ Android Wear โดยโค้ชพล
PDF
LINE Creator Meeting Thailand #1: เริ่มต้นเรียนรู้การสร้าง LINE Sticker
Microsoft Power Page for Developer - ภาษาไทย
Azure DevOps with Power Automate - Guideline
Getting Started Azure Cognitive Service Container
Power App - Wrap Sneak peek
Software developer: Prepare for the real world
.NET Bangkok Meetup #42 - Extract information from your document with Azure F...
.NET Conference 2020 - Introduction to Azure Form Recognizer
Introduction to Webometrics
Front-end อะไรเนี้ย? - เริ่มต้นเรียนรู้ และเข้าใจโลกของ Front-end Development...
React native - What, Why, How?
เรียนรู้ Node JS แบบสบายๆ สำหรับผู้เริ่มต้น
Angular JS: First look เริ่มต้น Angular JS กันแบบสบายๆ
สร้าง Facebook Fan Page อย่างไร ให้ยั่งยืน [บรรยายในงาน LINE Creator Meeting 3]
Ionic framework for web developer
Current state of Adobe PhoneGap & Cordova (yes, iOS 8 too)
PhoneGap/Cordova: Push notification on Android
Responsive Image: ปัญหา แนวคิด และวิธีใช้งานในปัจจุบัน (กันยา 2014)
เร่ิมต้นสร้าง Facebook page สำหรับ line creator
เริ่มต้นสร้างแอพ Android Wear โดยโค้ชพล
LINE Creator Meeting Thailand #1: เริ่มต้นเรียนรู้การสร้าง LINE Sticker
Ad

Recently uploaded (20)

PDF
Machine learning based COVID-19 study performance prediction
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PPTX
Cloud computing and distributed systems.
DOCX
The AUB Centre for AI in Media Proposal.docx
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PPT
Teaching material agriculture food technology
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Electronic commerce courselecture one. Pdf
PDF
Empathic Computing: Creating Shared Understanding
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
Big Data Technologies - Introduction.pptx
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Encapsulation_ Review paper, used for researhc scholars
Machine learning based COVID-19 study performance prediction
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Diabetes mellitus diagnosis method based random forest with bat algorithm
Agricultural_Statistics_at_a_Glance_2022_0.pdf
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Cloud computing and distributed systems.
The AUB Centre for AI in Media Proposal.docx
Digital-Transformation-Roadmap-for-Companies.pptx
Understanding_Digital_Forensics_Presentation.pptx
Teaching material agriculture food technology
Network Security Unit 5.pdf for BCA BBA.
Reach Out and Touch Someone: Haptics and Empathic Computing
Electronic commerce courselecture one. Pdf
Empathic Computing: Creating Shared Understanding
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Review of recent advances in non-invasive hemoglobin estimation
“AI and Expert System Decision Support & Business Intelligence Systems”
Big Data Technologies - Introduction.pptx
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Encapsulation_ Review paper, used for researhc scholars

OK Flutter, Welcome to All platform era