Init
This commit is contained in:
commit
1ba7bd9153
96 changed files with 2985 additions and 0 deletions
11
lib/widgets/pages/tutorial.dart
Normal file
11
lib/widgets/pages/tutorial.dart
Normal file
|
@ -0,0 +1,11 @@
|
|||
import 'package:desktopapp/widgets/components/tutorials/step1.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class TutorialPage extends StatelessWidget {
|
||||
const TutorialPage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(body: const Step1());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue