fix: Minor design
This commit is contained in:
parent
9e1b27939d
commit
7a57e06dab
6 changed files with 16 additions and 16 deletions
|
|
@ -70,7 +70,7 @@ class HomeserverPickerView extends StatelessWidget {
|
|||
child: controller.isLoading
|
||||
? LinearProgressIndicator()
|
||||
: Text(
|
||||
L10n.of(context).connect.toUpperCase(),
|
||||
L10n.of(context).connect,
|
||||
style: TextStyle(color: Colors.white, fontSize: 16),
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ class LoginView extends StatelessWidget {
|
|||
child: controller.loading
|
||||
? LinearProgressIndicator()
|
||||
: Text(
|
||||
L10n.of(context).login.toUpperCase(),
|
||||
L10n.of(context).login,
|
||||
style: TextStyle(color: Colors.white, fontSize: 16),
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -73,7 +73,7 @@ class SignUpPasswordView extends StatelessWidget {
|
|||
child: controller.loading
|
||||
? LinearProgressIndicator()
|
||||
: Text(
|
||||
L10n.of(context).createAccountNow.toUpperCase(),
|
||||
L10n.of(context).createAccountNow,
|
||||
style: TextStyle(color: Colors.white, fontSize: 16),
|
||||
),
|
||||
),
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@ class SignUpView extends StatelessWidget {
|
|||
child: controller.loading
|
||||
? LinearProgressIndicator()
|
||||
: Text(
|
||||
L10n.of(context).signUp.toUpperCase(),
|
||||
L10n.of(context).signUp,
|
||||
style: TextStyle(
|
||||
color: Colors.white, fontSize: 16),
|
||||
),
|
||||
|
|
@ -147,7 +147,7 @@ class SignUpView extends StatelessWidget {
|
|||
//elevation: 1,
|
||||
),
|
||||
onPressed: () => context.vRouter.push('/login'),
|
||||
child: Text(L10n.of(context).login.toUpperCase()),
|
||||
child: Text(L10n.of(context).login),
|
||||
),
|
||||
),
|
||||
if (controller.passwordLoginSupported &&
|
||||
|
|
@ -162,7 +162,7 @@ class SignUpView extends StatelessWidget {
|
|||
Theme.of(context).textTheme.bodyText1.color,
|
||||
),
|
||||
onPressed: controller.ssoLoginAction,
|
||||
child: Text(L10n.of(context).useSSO.toUpperCase()),
|
||||
child: Text(L10n.of(context).useSSO),
|
||||
),
|
||||
),
|
||||
]),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue