mirror of
https://github.com/we-promise/sure.git
synced 2026-04-12 08:37:22 +00:00
14 lines
369 B
Dart
14 lines
369 B
Dart
import 'package:flutter/material.dart';
|
|
import 'intro_screen_stub.dart' if (dart.library.html) 'intro_screen_web.dart';
|
|
|
|
class IntroScreen extends StatelessWidget {
|
|
const IntroScreen({super.key, this.onStartChat});
|
|
|
|
final VoidCallback? onStartChat;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return IntroScreenPlatform(onStartChat: onStartChat);
|
|
}
|
|
}
|