mirror of
https://github.com/sony/flutter-elinux-plugins.git
synced 2025-08-06 15:11:38 +08:00
17 lines
311 B
Dart
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,
|
|
);
|
|
}
|
|
}
|