softplayer-web/lib/components/environment_card.dart
Nikolai Rodionov ddc70e5854
All checks were successful
ci/woodpecker/push/build Pipeline was successful
Update the env proto and fix auth
2024-04-29 12:42:16 +02:00

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)],
)
],
),
);
}
}