Raid_Manager/app/lib/raid_info_page.dart

16 lines
400 B
Dart
Raw Normal View History

2022-12-06 21:29:48 +00:00
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'types/md_raid_system.dart';
class RaidInfoPage extends StatelessWidget {
const RaidInfoPage({Key? key, required this.raid}) : super(key: key);
final MdRaid raid;
@override
Widget build(BuildContext context) {
return Scaffold(appBar: AppBar(title: Text(raid.name),),body: Text(raid.name));
}
}