Frontend first draft
This commit is contained in:
23
frontend/pweb/lib/widgets/password/hint/widget.dart
Normal file
23
frontend/pweb/lib/widgets/password/hint/widget.dart
Normal file
@@ -0,0 +1,23 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'package:pweb/widgets/vspacer.dart';
|
||||
|
||||
|
||||
class PasswordValidationOutput extends StatelessWidget {
|
||||
final List<Widget> children;
|
||||
|
||||
const PasswordValidationOutput({super.key, required this.children});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Column(
|
||||
children: [
|
||||
VSpacer(multiplier: 0.25),
|
||||
ListView(
|
||||
shrinkWrap: true,
|
||||
children: children,
|
||||
)
|
||||
]
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user