Skip to content

Commit

Permalink
Added library annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Decoder07 committed Jul 1, 2024
1 parent 826c17e commit e930dec
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
library;

///Package imports
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';

///Project imports
import 'package:hms_room_kit/hms_room_kit.dart';
import 'package:hms_room_kit/src/meeting/meeting_store.dart';
import 'package:hms_room_kit/src/widgets/common_widgets/hms_cross_button.dart';
import 'package:hms_room_kit/src/widgets/common_widgets/hms_subheading_text.dart';
import 'package:provider/provider.dart';

///[ClosedCaptionControlBottomSheet] is a widget that displays the closed caption control bottom sheet
class ClosedCaptionControlBottomSheet extends StatefulWidget {
final MeetingStore meetingStore;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
library;

///[HMSToastsType] is used to define the type of toast to be shown.
enum HMSToastsType {
roleChangeToast,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
library;

///Package imports
import 'package:flutter/material.dart';

///Project imports
import 'package:hms_room_kit/hms_room_kit.dart';
import 'package:hms_room_kit/src/meeting/meeting_store.dart';
import 'package:hms_room_kit/src/widgets/common_widgets/hms_subheading_text.dart';
import 'package:hms_room_kit/src/widgets/toasts/hms_toast.dart';

///[HMSTranscriptionToast] is a widget that displays the transcription toast
class HMSTranscriptionToast extends StatelessWidget {
final String message;
final MeetingStore meetingStore;
Expand Down

0 comments on commit e930dec

Please sign in to comment.