feat: Minor button design changes

This commit is contained in:
Christian Pauly 2021-05-30 12:25:29 +02:00
parent 035d045d30
commit 34b8751328
5 changed files with 23 additions and 32 deletions

View File

@ -71,7 +71,6 @@ abstract class FluffyThemes {
style: ElevatedButton.styleFrom(
primary: AppConfig.primaryColor,
onPrimary: Colors.white,
elevation: 7,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
),
@ -171,7 +170,6 @@ abstract class FluffyThemes {
style: ElevatedButton.styleFrom(
primary: AppConfig.primaryColor,
onPrimary: Colors.white,
elevation: 7,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(AppConfig.borderRadius),
),

View File

@ -69,10 +69,7 @@ class HomeserverPickerView extends StatelessWidget {
: controller.checkHomeserverAction,
child: controller.isLoading
? LinearProgressIndicator()
: Text(
L10n.of(context).connect,
style: TextStyle(color: Colors.white, fontSize: 16),
),
: Text(L10n.of(context).connect),
),
),
),

View File

@ -57,17 +57,18 @@ class LoginView extends StatelessWidget {
obscureText: !controller.showPassword,
onSubmitted: controller.login,
decoration: InputDecoration(
prefixIcon: Icon(Icons.lock_outlined),
hintText: '****',
errorText: controller.passwordError,
suffixIcon: IconButton(
tooltip: L10n.of(context).showPassword,
icon: Icon(controller.showPassword
? Icons.visibility_off_outlined
: Icons.visibility_outlined),
onPressed: controller.toggleShowPassword,
),
labelText: L10n.of(context).password),
prefixIcon: Icon(Icons.lock_outlined),
hintText: '****',
errorText: controller.passwordError,
suffixIcon: IconButton(
tooltip: L10n.of(context).showPassword,
icon: Icon(controller.showPassword
? Icons.visibility_off_outlined
: Icons.visibility_outlined),
onPressed: controller.toggleShowPassword,
),
labelText: L10n.of(context).password,
),
),
),
SizedBox(height: 12),
@ -81,10 +82,7 @@ class LoginView extends StatelessWidget {
: () => controller.login(context),
child: controller.loading
? LinearProgressIndicator()
: Text(
L10n.of(context).login,
style: TextStyle(color: Colors.white, fontSize: 16),
),
: Text(L10n.of(context).login),
),
),
),

View File

@ -72,10 +72,7 @@ class SignUpPasswordView extends StatelessWidget {
controller.loading ? null : controller.signUpAction,
child: controller.loading
? LinearProgressIndicator()
: Text(
L10n.of(context).createAccountNow,
style: TextStyle(color: Colors.white, fontSize: 16),
),
: Text(L10n.of(context).createAccountNow),
),
),
),

View File

@ -61,7 +61,13 @@ class SignUpView extends StatelessWidget {
? null
: [AutofillHints.newUsername],
decoration: InputDecoration(
prefixIcon: Icon(Icons.account_circle_outlined),
prefixIcon: Padding(
padding: const EdgeInsets.only(
left: 12.0,
right: 22,
),
child: Icon(Icons.account_circle_outlined),
),
hintText: L10n.of(context).username,
errorText: controller.usernameError,
labelText: L10n.of(context).chooseAUsername,
@ -107,11 +113,7 @@ class SignUpView extends StatelessWidget {
controller.loading ? null : controller.signUpAction,
child: controller.loading
? LinearProgressIndicator()
: Text(
L10n.of(context).signUp,
style: TextStyle(
color: Colors.white, fontSize: 16),
),
: Text(L10n.of(context).signUp),
),
),
),
@ -144,7 +146,6 @@ class SignUpView extends StatelessWidget {
primary: Theme.of(context).secondaryHeaderColor,
onPrimary:
Theme.of(context).textTheme.bodyText1.color,
//elevation: 1,
),
onPressed: () => context.vRouter.push('/login'),
child: Text(L10n.of(context).login),