softplayer-web/lib/components/environment_card.dart

25 lines
410 B
Dart
Raw Normal View History

2024-04-29 10:42:16 +00:00
import 'package:flutter/material.dart';
class EnvirnomentCard extends StatelessWidget {
final String name;
const EnvirnomentCard({
super.key,
required this.name,
});
@override
Widget build(BuildContext context) {
return Card(
child: Column(
children: [
Text(name),
Row(
children: [Text(name)],
)
],
),
);
}
}