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

[ABC2025Spring]Code Less, Build More: A Practic...

[ABC2025Spring]Code Less, Build More: A Practical Guide to Mobile Apps with Generative AI

ABC 2025 Springの講演資料"Code Less, Build More: A Practical Guide to Mobile Apps with Generative AI"です。
#abc2025s #日本Androidの会 #flutterjp #flutter

Avatar for Kenichi Kambara

Kenichi Kambara

June 07, 2025
Tweet

More Decks by Kenichi Kambara

Other Decks in Technology

Transcript

  1. ABC 2025 Spring 2025.06.07 ਆݪ ݈Ұ (@korodroid) Code Less, Build

    More : A Practical Guide to Mobile Apps with Generative AI
  2. About me •Mobile App Development •Speeches (e.g. 22 Int’l/100+ Domestic)

    •Writings (e.g. 10 Dev Books) •[Of fi cial] Evangelist at NTT TechnoCross •[Private] iplatform.org ਆݪ ݈Ұ (X:@korodroid) NEW
  3. About Flutter  A framework that allows simultaneous development of

    apps for multiple platforms from a common source (Cross-platform) https://docs. fl utter.dev/
  4. 2. Fast and ef fi cient development process  Hot

    reload https://docs. fl utter.dev/tools/hot-reload
  5. 3. Uses Dart as the programming language  Very similar

    to Java/JavaScript import 'package:flutter/material.dart'; void main() { runApp( Center( child: Text( ‘Hello, Flutter’, textDirection: TextDirection.ltr, ), ), ); }