본문 바로가기

AppDevelopment15

Flutter 플러터 앱은 크기가 너무 큽니다., Flutter apps are too big in size 질문 I have good experience in android app development using java. Recently I came to know about flutter. So, I have tried to create a simple android app with flutter based on official tutorial. But surprisingly the debug app size is 25MB and release apk costs more than 7MB. It is really larger when compare with native developed android app. Is there any way to optimize it? 답변 앱 크기에 대한 최소 제한이 있는 것.. 2023. 6. 12.
Flutter 플러터 앱에 날짜 선택기를 추가하는 올바른 방법은 무엇인가요?, What is the correct way to add date picker in flutter app? 질문 내 앱에서는 회원 가입 페이지를 만들고 있습니다. 그곳에는 생년월일을 추가해야 합니다. 그러나 이를 위한 올바른 방법을 찾지 못하고 있습니다. 답변 사용 방법을 보여주는 간단한 앱: import 'dart:async'; import 'package:flutter/material.dart'; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return const MaterialApp( title: 'Flutter Demo', home: MyHomePage(title: 'Flutter Demo Home Page'), ); } } class My.. 2023. 5. 30.
Flutter에서 메인 화면의 배경색을 어떻게 설정하나요?, How do I set the background color of my main screen in Flutter? 질문 저는 Flutter를 배우고 있습니다. 매우 기초부터 시작하고 있습니다. MaterialApp을 사용하지 않고 전체 화면의 배경색을 설정하는 좋은 방법이 무엇인가요? 지금까지 작성한 코드는 다음과 같습니다: import 'package:flutter/material.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return new Center(child: new Text("Hello, World!")); } } 제가 가진 몇 가지 질.. 2023. 5. 17.
Flutter 플러터: 세로 중앙에 열 정렬하기, Flutter : Vertically center column 질문 Flutter에서 열을 수직 중앙에 배치하는 방법은 무엇인가요? "새로운 Center" 위젯을 사용했습니다. "새로운 Center" 위젯을 사용했지만 열을 수직으로 중앙에 배치하지 않습니다. 아이디어가 있다면 도움이 될 것입니다.... @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text("감사합니다"), ), body: new Center( child: new Column( children: [ new Padding( padding: new EdgeInsets.all(25.0), child: new AnimatedBuilder( animation: animationController, c.. 2023. 5. 12.