티스토리 뷰

01.모바일/Flutter

[Flutter] 한글 표시

피자돌이 2022. 3. 1. 22:36
반응형

before

dependencies:
  flutter:
    sdk: flutter

after (2줄 추가 flutter_localizations:)

dependencies:
  flutter:
    sdk: flutter
  flutter_localizations:
    sdk: flutter

 

ex) main.dart

MaterialApp(
      title: 'Hello, Flutter',
      localizationsDelegates: [
        GlobalMaterialLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
        GlobalCupertinoLocalizations.delegate,
      ],
      supportedLocales: [
        Locale('ko', 'KR'),
        // Locale('es', ''), // Spanish, no country code
      ],
    );

 

참고 링크:

Internationalizing Flutter apps | Flutter

 

Internationalizing Flutter apps

How to internationalize your Flutter app.

docs.flutter.dev

GlobalMaterialLocalizations class - flutter_localizations library - Dart API

country_code_picker | Flutter Package (pub.dev)

 

country_code_picker | Flutter Package

A flutter package for showing a country code selector. In addition it gives the possibility to select a list of favorites countries, as well as to search using a simple searchbox

pub.dev

 

반응형
댓글
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함