목록DART (2)
투케이2K

[개발 환경 설정]개발 툴 : AndroidStudio개발 언어 : Dart [소스 코드] import 'package:flutter/material.dart';import 'dart:developer';// -----------------------------------------------------------------------------------------// TODO [Enum 생성]// -----------------------------------------------------------------------------------------enum Response { SUCCESS("성공", "200"), ERROR("실패", "500"); final String resType;..

[개발 환경 설정]개발 툴 : AndroidStudio개발 언어 : Dart [원본 : main.dart 소스 코드]import 'package:flutter/material.dart';void main() { runApp(const MyApp());}class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( // This is..