Frontend first draft

This commit is contained in:
Arseni
2025-11-13 15:06:15 +03:00
parent e47f343afb
commit ddb54ddfdc
504 changed files with 25498 additions and 1 deletions

View 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);
}
}