updates
parent
6b316bf262
commit
68b0e3857a
@ -0,0 +1,31 @@
|
|||||||
|
import 'dart:io';
|
||||||
|
|
||||||
|
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class SmartWatchInstructions extends StatefulWidget {
|
||||||
|
@override
|
||||||
|
_SmartWatchInstructionsState createState() => _SmartWatchInstructionsState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _SmartWatchInstructionsState extends State<SmartWatchInstructions> {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return AppScaffold(
|
||||||
|
appBarTitle: "Sync Health Data",
|
||||||
|
isShowAppBar: true,
|
||||||
|
body: Container(
|
||||||
|
child: Platform.isIOS
|
||||||
|
? _getAppleWatchInstructions()
|
||||||
|
: _getGoogleWatchInstructions(),
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
_getAppleWatchInstructions() {
|
||||||
|
return SingleChildScrollView();
|
||||||
|
}
|
||||||
|
|
||||||
|
_getGoogleWatchInstructions() {
|
||||||
|
return SingleChildScrollView();
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue