forgot to add cloudservice to sidebar
This commit is contained in:
parent
84dfa474ee
commit
779d9c2808
|
@ -1,5 +1,6 @@
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_provisioning_for_iot/bluetooth_test.dart';
|
import 'package:flutter_provisioning_for_iot/bluetooth_test.dart';
|
||||||
|
import 'package:flutter_provisioning_for_iot/cloud_service_ui.dart';
|
||||||
import 'main_page.dart';
|
import 'main_page.dart';
|
||||||
import 'settings.dart';
|
import 'settings.dart';
|
||||||
|
|
||||||
|
@ -34,6 +35,12 @@ class Sidebar extends StatelessWidget {
|
||||||
Navigator.push(context, MaterialPageRoute(builder: (context) => const BluetoothTest()));
|
Navigator.push(context, MaterialPageRoute(builder: (context) => const BluetoothTest()));
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
ListTile(
|
||||||
|
title: const Text("Cloud Service"),
|
||||||
|
onTap: () {
|
||||||
|
Navigator.push(context, MaterialPageRoute(builder: (context) => const CloudService()));
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue