Aidra Connect 10.0.2+16
Aidra Connect Mobile Application
Loading...
Searching...
No Matches
enviromental_dashboard_data_loaded_view.dart
Go to the documentation of this file.
1import 'package:flutter/material.dart';
2import 'package:flutter_screenutil/flutter_screenutil.dart';
3
4import '../../../../environmental_dashboard/domain/entities/environmental_dashboard_entity.dart';
5import '../widgets/environmental_dashboard_cards.dart';
6
7class EnvironmentalDashboardViewv2 extends StatelessWidget {
9 super.key,
10 required this.entity,
11 });
12
14
15 @override
16 Widget build(BuildContext context) {
17 return SingleChildScrollView(
18 padding: EdgeInsets.symmetric(horizontal: 15.sp, vertical: 15.sp),
19 child: Column(
20 children: [
22 ],
23 ),
24 );
25 }
26}
final DashboardEntity entity
const EnvironmentalDashboardViewv2({ super.key, required this.entity, })
const EnvironmentalDashboardCardsv2({super.key, required this.entity})
final Widget child
override Widget build(BuildContext context)