mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 17:47:28 +00:00
18 lines
423 B
Dart
18 lines
423 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';
|
|
|
|
class WizardPage extends StatelessWidget {
|
|
const WizardPage({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const SingleChildScrollView(
|
|
child: WizartSwitches(),
|
|
);
|
|
}
|
|
}
|