flutter and other mobile framework

web view

react native

flutter

what is Flutter

 Flutter is a mobile app SDK, complete with framework, widgets, and tools, that gives developers an easy and productive way to build and deploy beautiful mobile apps on both Android and iOS.

  1. A mobile app SDK by Google.
  2. High performance apps at 60fps.
  3. Craft beautiful UIs.
  4. Eases migration to Mobile App Development.
  5. Open Source!

Dart

example

int fib(int n) => (n > 2) ? (fib(n - 1) + fib(n-2)) : 1;

void main() {
    print('fib(20) = ${fib(20)}');
}

參考資料

Flutter

By jaokuohsuan

Flutter

  • 990