mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-03-11 21:26:56 +00:00
19 lines
421 B
Dart
19 lines
421 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:madari_client/features/getting_started/container/getting_started.dart';
|
|
|
|
class GettingStartedPage extends StatelessWidget {
|
|
static String get routeName {
|
|
return "/getting-started";
|
|
}
|
|
|
|
const GettingStartedPage({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return GettingStartedScreen(
|
|
onCallback: () {},
|
|
);
|
|
}
|
|
}
|