├── lib
├── common
│ └── widgets
│ ├── bottom_sheet.dart (1 KB) // Universal bottom sheet
│ ├── copy_text_button.dart (1 KB) // Universal copy button
│ ├── dialog.dart (4 KB) // Universal dialog
│ ├── drop_down_button.dart (<1 KB) // Universal dropdown button
│ ├── info_list.dart (1 KB) // Universal information display item
│ ├── rounded_container.dart (<1 KB) // Universal rounded corner container
│ ├── search_bar.dart (1 KB) // Universal search bar
│ ├── single_select_list.dart (1 KB) // Universal single select list
│ ├── slider.dart (1 KB) // Universal slider
│ ├── switch.dart (<1 KB) // Universal switcher
│ ├── toast.dart (<1 KB) // Universal toast
│ ├── user_info.dart (3 KB) // Universal user info item
│ └── volume_bar.dart (2 KB) // Universal dynamic microphone volume bar
├── pages
│ └── conference_main
│ ├── view.dart (3 KB)
│ └── widgets
│ ├── bottom_view
│ │ ├── view.dart (1 KB) // Function button of bottom bar
│ │ └── widgets
│ │ ├── base_button.dart (10 KB) // Unexpanded basic bottom function buttons
│ │ ├── bottom_button_item.dart (2 KB) // Encapsulated universal bottom single item button
│ │ ├── mic_button.dart (1 KB) // Microphone button that pops up after the bottom bar is hidden
│ │ └── more_button.dart (3 KB) // All bottom function buttons after expansion
│ ├── exit
│ │ └── view.dart (2 KB) // Bottom sheet of exit room
│ ├── invite_sheet
│ │ └── invite_sheet.dart (1 KB) // Invite popup
│ ├── local_screen_sharing
│ │ └── local_screen_sharing.dart (1 KB) // Prompt component during screen sharing in the middle of the screen after turning on screen sharing locally
│ ├── raise_hand_list
│ │ ├── view.dart (3 KB) // Raise hand application list (only displayed on the host in raise hand speaking mode)
│ │ └── widgets
│ │ ├── title.dart (<1 KB) // List title bar
│ │ ├── user_item.dart (1 KB) // A single item of the encapsulated list component
│ │ └── user_table.dart (1 KB) // List component
│ ├── setting
│ │ ├── view.dart (1 KB) // Settings panel
│ │ └── widgets
│ │ ├── audio_setting.dart (1 KB) // Audio setting component
│ │ ├── setting_info_select.dart (1 KB) // Radio value setting component, such as resolution setting
│ │ ├── setting_item.dart (<1 KB) // Settings panel single setting item
│ │ └── video_setting.dart (4 KB) // Video setting component
│ ├── top_view
│ │ ├── view.dart (3 KB) // Function button of top bar
│ │ └── widgets
│ │ ├── meeting_title.dart (2 KB) // Top meeting information display component
│ │ ├── room_info_sheet.dart (2 KB) // Detailed meeting information pop-up window at the bottom
│ │ └── top_button_item.dart (1 KB) // Top function single universal item button
│ ├── transfer_host
│ │ ├── view.dart (1 KB) // Transfer homeowners panel
│ │ └── widgets
│ │ ├── title.dart (<1 KB) // Title bar of transfer homeowners panel
│ │ ├── user_item.dart (1 KB) // Transferable homeowner user list single item
│ │ └── user_table.dart (1 KB) // Transferable homeowner user list
│ ├── user_list
│ │ ├── view.dart (3 KB) // User list Page
│ │ └── widgets
│ │ ├── button_item.dart (1 KB) // Button item at the bottom of the user list
│ │ ├── user_control.dart (7 KB) // The member management page that pops up after clicking on a single member
│ │ ├── user_control_item.dart (1 KB) // The item of member management page
│ │ ├── user_item.dart (3 KB) // User list item
│ │ └── user_table.dart (3 KB) // User list
│ ├── video_seat
│ │ ├── video_layout
│ │ │ ├── view.dart (3 KB) // The layout of video items in a single-page video screen
│ │ │ └── widgets
│ │ │ ├── video_item // Single video frame item folder
│ │ │ │ ├── view.dart (4 KB) // Single video frame item
│ │ │ │ └── widgets
│ │ │ │ ├── video_user_info.dart (2 KB) // User information on the video screen item
│ │ │ │ └── volume_bar.dart (<1 KB) // Microphone icon in user information
│ │ │ └── with_draggable_window_widget.dart (1 KB) // Two-person video screen size window layout method
│ │ └── video_page_turning
│ │ ├── view.dart (2 KB) // Video screen flip management page
│ │ └── widgets
│ │ └── page_indicator.dart (1 KB) // Page indicator dot
Was this page helpful?