You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm-flutter-app/lib/home/que_item_list.dart

19 lines
656 B
Dart

import 'package:flutter/material.dart';
import 'package:queuing_system/home/que_item.dart';
class QueItemList extends StatelessWidget {
const QueItemList({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Column(children: [
QueItem(queNo: "OBG-T45", isInListLine: true, isNurseVisit: true,),
QueItem(queNo: "OBG-T45", isInListLine: true, isNurseVisit: true,),
QueItem(queNo: "OBG-T45", isInListLine: true, isNurseVisit: true,),
QueItem(queNo: "OBG-T45", isInListLine: true, isNurseVisit: true,),
QueItem(queNo: "OBG-T45", isInListLine: true, isNurseVisit: true,),
],);
}
}