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.
19 lines
561 B
19 lines
561 B
3 years ago
|
import 'package:bytedesk_kefu/blocs/feedback_bloc/bloc.dart';
|
||
|
import 'package:bytedesk_kefu/ui/feedback/page/feedback_page.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
||
|
|
||
|
class FeedbackProvider extends StatelessWidget {
|
||
|
final String? uid;
|
||
|
const FeedbackProvider({Key? key, @required this.uid}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
//
|
||
|
return BlocProvider(
|
||
|
create: (BuildContext context) => FeedbackBloc(),
|
||
|
child: FeedbackPage(uid: this.uid),
|
||
|
);
|
||
|
}
|
||
|
}
|