fixed warnings (super.key, etc)

This commit is contained in:
Kima
2023-12-12 22:57:16 +01:00
parent fc3f538e6b
commit 6bac82f7d6
46 changed files with 349 additions and 228 deletions

View File

@@ -5,12 +5,11 @@ enum LoginInputStyle { username, password, school }
class LoginInput extends StatefulWidget {
const LoginInput(
{Key? key,
{super.key,
required this.style,
this.controller,
this.focusNode,
this.onClear})
: super(key: key);
this.onClear});
final Function()? onClear;
final LoginInputStyle style;