mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-16 01:56:19 +00:00
22 lines
599 B
Dart
22 lines
599 B
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:syncrow_app/features/devices/view/widgets/wizard_switches.dart';
|
|
import 'package:syncrow_app/utils/resource_manager/constants.dart';
|
|
|
|
class WizardPage extends StatelessWidget {
|
|
const WizardPage({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: Constants.defaultPadding),
|
|
child: SingleChildScrollView(
|
|
child: WizartSwitches(),
|
|
),
|
|
);
|
|
}
|
|
}
|