Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Continued focus on developer experience by Flut...

Gidudu wisdom nico
June 06, 2024
12

Continued focus on developer experience by Flutter (Flutter forward extended Jinja)

Flutter forward extended jinja

Gidudu wisdom nico

June 06, 2024
Tweet

Transcript

  1. Dart 3 Key Features Flutter News tool kit wonderous flutter

    Opportunities In flutter open source 1. 2. 3. 4.
  2. Dart mission is to create the best programming language for

    building high-quality apps across any platform. Dart is approachable, any to lean, avoids unnecessary complexity, and is internally consistent. Dart 3 What are the features of dart 3
  3. In Dart 3, you will always get null safety. Null

    safety prevents errors that results through unintentional access of variables set to null. For example if a method expects an integer but receives null, your app causes a runtime error. With sound null safety, variables are set non nullable by default. Dart 3 100% sound null safety
  4. Null safety • c# • Java • Kotlin • Dart

    Sound Null safety • Dart • Swift Sound null safety
  5. List<int> getEvenNumbers(List<int> numbers) { List<int> evenNumbers = []; for (int

    number in numbers) { if (number % 2 == 0) { evenNumbers.add(number); } } return evenNumbers; } JDJ FHFH
  6. User onboarding Account Creation / Login Content feeds and content

    pages Monetization Search & Settings + + + + + Key features
  7. Google Summer Of Code (GSOC) Outreachy Internship Participate In hackthorns

    Other paid internships Include (Summer Of Bitcoin, Rails Girls, etc) + + + + Open Source Flutter Opportunities