Raid_Manager/app/lib/raid_info_page.dart

16 lines
400 B
Dart

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