25 lines
410 B
Dart
25 lines
410 B
Dart
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)],
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|