Android release 4.8.2 revision 483
This commit is contained in:
@ -44,8 +44,8 @@ class RegisterPage extends StatelessWidget {
|
||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
children: [
|
||||
Text(
|
||||
"sign_up".tr,
|
||||
style: TextStyle(
|
||||
"sign_up".tr, // "サインアップ"
|
||||
style: const TextStyle(
|
||||
fontSize: 30,
|
||||
fontWeight: FontWeight.bold,
|
||||
),
|
||||
@ -54,7 +54,7 @@ class RegisterPage extends StatelessWidget {
|
||||
height: 20,
|
||||
),
|
||||
Text(
|
||||
"create_account".tr,
|
||||
"create_account".tr, // アカウントを無料で作成します。
|
||||
style: TextStyle(
|
||||
fontSize: 15,
|
||||
color: Colors.grey[700],
|
||||
@ -69,15 +69,15 @@ class RegisterPage extends StatelessWidget {
|
||||
padding: const EdgeInsets.symmetric(horizontal: 40),
|
||||
child: Column(
|
||||
children: [
|
||||
makeInput(label: "email".tr, controller: emailController),
|
||||
makeInput(label: "email".tr, controller: emailController), // メールアドレス
|
||||
makeInput(
|
||||
label: "password".tr,
|
||||
controller: passwordController,
|
||||
obsureText: true),
|
||||
obsureText: true), // パスワード
|
||||
makeInput(
|
||||
label: "confirm_password".tr,
|
||||
controller: confirmPasswordController,
|
||||
obsureText: true)
|
||||
obsureText: true) // パスワード再確認
|
||||
],
|
||||
),
|
||||
),
|
||||
@ -99,14 +99,14 @@ class RegisterPage extends StatelessWidget {
|
||||
if (passwordController.text !=
|
||||
confirmPasswordController.text) {
|
||||
Get.snackbar(
|
||||
"No match",
|
||||
"Passwords does not match",
|
||||
"no_match".tr,
|
||||
"password_does_not_match".tr,
|
||||
backgroundColor: Colors.red,
|
||||
colorText: Colors.white,
|
||||
icon: const Icon(Icons.assistant_photo_outlined,
|
||||
size: 40.0, color: Colors.blue),
|
||||
snackPosition: SnackPosition.TOP,
|
||||
duration: const Duration(milliseconds: 800),
|
||||
duration: const Duration(seconds: 3),
|
||||
// backgroundColor: Colors.yellow,
|
||||
//icon:Image(image:AssetImage("assets/images/dora.png"))
|
||||
);
|
||||
@ -121,7 +121,7 @@ class RegisterPage extends StatelessWidget {
|
||||
icon: const Icon(Icons.assistant_photo_outlined,
|
||||
size: 40.0, color: Colors.blue),
|
||||
snackPosition: SnackPosition.TOP,
|
||||
duration: const Duration(milliseconds: 800),
|
||||
duration: const Duration(seconds: 3),
|
||||
//backgroundColor: Colors.yellow,
|
||||
//icon:Image(image:AssetImage("assets/images/dora.png"))
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user