migrate: material 3

This commit is contained in:
lollipopkit
2023-05-07 01:28:51 +08:00
parent e932241df0
commit 5afa543ba5
29 changed files with 438 additions and 480 deletions

View File

@@ -183,6 +183,12 @@ abstract class S {
/// **'Run in backgroud'**
String get bgRun;
/// No description provided for @canPullRefresh.
///
/// In en, this message translates to:
/// **'You can pull to refresh.'**
String get canPullRefresh;
/// No description provided for @cancel.
///
/// In en, this message translates to:

View File

@@ -49,6 +49,9 @@ class SEn extends S {
@override
String get bgRun => 'Run in backgroud';
@override
String get canPullRefresh => 'You can pull to refresh.';
@override
String get cancel => 'Cancel';

View File

@@ -49,6 +49,9 @@ class SZh extends S {
@override
String get bgRun => '后台运行';
@override
String get canPullRefresh => '可以下拉刷新';
@override
String get cancel => '取消';