Files
Makoto Sato 10a89e1421 Add audioplayers for elinux (#96)
Signed-off-by: Makoto Sato <makoto.sato@atmark-techno.com>
2024-05-02 10:59:55 +09:00

17 lines
311 B
Dart

import 'package:flutter/material.dart';
class Pad extends StatelessWidget {
final double width;
final double height;
const Pad({super.key, this.width = 0, this.height = 0});
@override
Widget build(BuildContext context) {
return Container(
width: width,
height: height,
);
}
}