Frontend first draft
This commit is contained in:
14
frontend/pweb/lib/widgets/vspacer.dart
Normal file
14
frontend/pweb/lib/widgets/vspacer.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
|
||||
class VSpacer extends StatelessWidget{
|
||||
final double spacing;
|
||||
final double multiplier;
|
||||
|
||||
const VSpacer({super.key, this.spacing = 16, this.multiplier = 1.0});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return SizedBox(height: spacing * multiplier);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user