You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
544 B
21 lines
544 B
import 'package:bytedesk_kefu/blocs/help_bloc/bloc.dart';
|
|
import 'package:bytedesk_kefu/ui/faq/page/help_page.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
class HelpProvider extends StatelessWidget {
|
|
final String? uid;
|
|
const HelpProvider({Key? key, @required this.uid}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
//
|
|
return BlocProvider(
|
|
create: (BuildContext context) => HelpBloc(),
|
|
child: HelpPage(
|
|
uid: uid,
|
|
),
|
|
);
|
|
}
|
|
}
|