질문이 있습니다
#125
Replies: 2 comments 12 replies
-
|
Beta Was this translation helpful? Give feedback.
1 reply
-
// 1
configuration: PlutoGridConfiguration(
localeText: const PlutoGridLocaleText.korean(),
),
// 2
configuration: PlutoGridConfiguration(
localeText: const PlutoGridLocaleText(
freezeColumnToLeft: '좌측 고정',
freezeColumnToRight: '우측 고정',
),
),
// 3
configuration: PlutoGridConfiguration(
localeText: const PlutoGridLocaleText.korean(
freezeColumnToLeft: '좌측 고정',
freezeColumnToRight: '우측 고정',
),
), 1번은 기본 한글로, 2,3 번은 기본 제공되는 언어에 특정 속성만 변경하고 싶은 문자로 변경 할 수 있습니다. 버전은 1.0.0 이어야 합니다. 0.x 버전에서는 localeText 속성이 없습니다. |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Beta Was this translation helpful? Give feedback.
All reactions