36 lines
801 B
Dart
36 lines
801 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:thingsboard_app/core/context/tb_context.dart';
|
|
import 'package:thingsboard_app/core/context/tb_context_widget.dart';
|
|
import 'package:thingsboard_app/widgets/tb_app_bar.dart';
|
|
|
|
import 'dashboards_grid.dart';
|
|
|
|
class DashboardsPage extends TbPageWidget {
|
|
|
|
DashboardsPage(TbContext tbContext) : super(tbContext);
|
|
|
|
@override
|
|
_DashboardsPageState createState() => _DashboardsPageState();
|
|
|
|
}
|
|
|
|
class _DashboardsPageState extends TbPageState<DashboardsPage> {
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: TbAppBar(
|
|
tbContext,
|
|
title: Text('Dashboards')
|
|
),
|
|
body: DashboardsGridWidget(tbContext)
|
|
);
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
super.dispose();
|
|
}
|
|
|
|
}
|