Flutter talkshow

R&D em BeeSight Soft
23 de Apr de 2018
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
Flutter talkshow
1 de 37

Mais conteúdo relacionado

Mais procurados

The magic of flutterThe magic of flutter
The magic of flutterShady Selim
Introduction to FlutterIntroduction to Flutter
Introduction to FlutterApoorv Pandey
Build beautiful native apps in record time with flutterBuild beautiful native apps in record time with flutter
Build beautiful native apps in record time with flutterRobertLe30
Flutter introductionFlutter introduction
Flutter introductionSheilaJimenezMorejon
Flutter IntroFlutter Intro
Flutter IntroVladimir Parfenov
Flutter workshopFlutter workshop
Flutter workshopVishnu Suresh

Similar a Flutter talkshow

Why Flutter.pdfWhy Flutter.pdf
Why Flutter.pdfRandal Schwartz
Mobile Web Apps and the Intel® XDKMobile Web Apps and the Intel® XDK
Mobile Web Apps and the Intel® XDKIntel® Software
Enhancing and modifying_the_core_android_osEnhancing and modifying_the_core_android_os
Enhancing and modifying_the_core_android_osArnav Gupta
Enhancing and modifying_the_core_android_osEnhancing and modifying_the_core_android_os
Enhancing and modifying_the_core_android_osArnav Gupta
Cross platform mobile application devlopmentCross platform mobile application devlopment
Cross platform mobile application devlopmentPrabhat gangwar
Synapse india reviews on asp.net mobile applicationSynapse india reviews on asp.net mobile application
Synapse india reviews on asp.net mobile applicationsaritasingh19866

Mais de Nhan Cao

Android asynchronous programmingAndroid asynchronous programming
Android asynchronous programmingNhan Cao
Android component programmingAndroid component programming
Android component programmingNhan Cao
OOp, core language & principlesOOp, core language & principles
OOp, core language & principlesNhan Cao
ArAr
ArNhan Cao
Android tddAndroid tdd
Android tddNhan Cao
React native starterReact native starter
React native starterNhan Cao

Último

Orchestration, Automation and Virtualisation Maturity ModelOrchestration, Automation and Virtualisation Maturity Model
Orchestration, Automation and Virtualisation Maturity ModelCSUC - Consorci de Serveis Universitaris de Catalunya
Knowledge graph use cases in natural language generationKnowledge graph use cases in natural language generation
Knowledge graph use cases in natural language generationElena Simperl
Nymity Framework: Privacy & Data Protection Update in 7 StatesNymity Framework: Privacy & Data Protection Update in 7 States
Nymity Framework: Privacy & Data Protection Update in 7 StatesTrustArc
Smart Contracts - The Blockchain Beyond BitcoinSmart Contracts - The Blockchain Beyond Bitcoin
Smart Contracts - The Blockchain Beyond BitcoinJim McKeeth
Announcing InfluxDB ClusteredAnnouncing InfluxDB Clustered
Announcing InfluxDB ClusteredInfluxData
Die ultimative Anleitung für HCL Nomad Web AdministratorenDie ultimative Anleitung für HCL Nomad Web Administratoren
Die ultimative Anleitung für HCL Nomad Web Administratorenpanagenda

Último(20)

Flutter talkshow

Notas do Editor

  1. What are some advantages of Flutter? It helps you: Be highly productive  — Develop for iOS and Android from a single codebase  — Do more with less code, even on a single OS, with a modern, expressive language and a declarative approach  — Prototype and iterate easily: * Experiment by changing code and reloading as your app runs (with hot reload) * Fix crashes and continue debugging from where the app left off Create beautiful, highly-customized user experiences  — Benefit from a rich set of Material Design and Cupertino (iOS-flavor) widgets built using Flutter’s own framework  — Realize custom, beautiful, brand-driven designs, without the limitations of OEM widget sets Technology Build - Beautiful app UIs * Rich 2D GPU-accelerated APIs * Reactive framework * Animation/motion APIs * Material Components and Cupertino widgets - Fluid coding experience * Sub-second, stateful hot reload * IntelliJ: refactor, code completion, etc * Dart language and core libs * Package manager - Full-features apps * Interop with mobile OS APIs & SDKs * Maven/Java * Cocoapods/ObjC/Swift Optimize - Test * Unit testing * Integration testing * On-device testing - Debug * IDE debugger * Web-based debugger * async/await aware * Expression evaluator - Profile * Timeline * CPU and memory * In-app perf charts Deploy - Compile * Native ARM code * Dead code elimination - Distribution * App Store * Play Store
  2. https://docs.google.com/presentation/d/1cw7A4HbvM_Abv320rVgPVGiUP2msVs7tfGbkgdrTy0I/edit?usp=sharing
  3. https://www.dartlang.org/
  4. https://www.dartlang.org/ IOE: http://www.bkacad.com/upload_images/3_value_index_survey_marquee_3.png https://blog.cloudrail.com/internet-of-everything-vs-internet-of-things/
  5. https://www.dartlang.org/ Productive. Syntax must be clear and concise, tooling simple, and dev cycles near-instant and on-device. Fast. Runtime performance and startup must be great and predictable even on small mobile devices. Portable. Client developers have to think about three platforms today: iOS, Android, and Web. The language needs to work well on all of them. Approachable. The language can’t stray too far from the familiar if it wishes to be relevant for millions of developers. Reactive. A reactive style of programming should be supported by the language. https://medium.com/dartlang/announcing-dart-2-80ba01f43b6
  6. https://www.dartlang.org/ Should move from java to Dart? Look some points: Short syntax Public by default, private by prefixing “_” Collection literals; Everything’s an object — no “primitives” Named parameters, optional parameters, defaults; Properties — no need to write “get” methods everywhere Cascades — everything’s a builder Type inference with strong mode — just write “var” for locals Named constructors, auto assignment to fields; String interpolation, several types of string literal; dartfmt — worries about formatting so you don’t have to Async running, thus it performs way better java, php
  7. https://www.dartlang.org/
  8. Same with ReactNative using all in Javascript. Some points why Flutter using Dart
  9. Same with ReactNative using all in Javascript. Some points why Flutter using Dart
  10. Same with ReactNative using all in Javascript. Some points why Flutter using Dart
  11. Widgets are now part of the app. We can customize it with your own style by using set of material widgets or access to painter and canvas to make awesome shape.
  12. Widgets are now part of the app. We can customize it with your own style by using set of material widgets or access to painter and canvas to make awesome shape.
  13. You will not be limited customizing native platform by using platform channel. Flutter uses a flexible system that allows you to call platform-specific APIs whether available in Java or Kotlin code on Android, or in ObjectiveC or Swift code on iOS. Messages and responses are passed asynchronously, to ensure the user interface remains responsive. [https://flutter.io/platform-channels/]
  14. In FAQ’s Flutter: https://flutter.io/faq/#how-big-is-the-flutter-engine
  15. In FAQ’s Flutter: https://flutter.io/faq/#how-big-is-the-flutter-engine
  16. In FAQ’s Flutter: https://flutter.io/faq/#how-big-is-the-flutter-engine
  17. In FAQ’s Flutter: https://flutter.io/faq/#how-big-is-the-flutter-engine