MainGridComponent constructor
- {Key? key,
- required MainGridComponentOptions options}
Constructs a MainGridComponent widget.
Parameters:
options
(MainGridComponentOptions
): Configuration options for the main grid component.
Example Usage:
MainGridComponent(
options: MainGridComponentOptions(
backgroundColor: Colors.blue,
children: [
// Your widgets here
],
mainSize: 200,
height: 300,
width: 500,
timeBackgroundColor: Colors.white,
showTimer: true,
meetingProgressTime: '10:00',
),
);
Implementation
const MainGridComponent({super.key, required this.options});