skip to Main Content

Show socket progress in bottom Sheet in flutter

I am using sockets in flutter. I want to show the progress in bottom sheet with Linear percentIndicator. Here's my initSocket method: initSocket(String livelapseId) { socket = IO.io(Endpoints.baseUrl, <String, dynamic>{ 'autoConnect': true, 'transports': ['websocket'], }); // socket.connect(); socket!.onConnect((_) { print('Connection…

VIEW QUESTION

ModalBottomSheetRoute' is imported from both 'package:flutter/src/material/bottom_sheet.dart' and package:modal_bottom_sheet

Error: 'ModalBottomSheetRoute' is imported from both 'package:flutter/src/material/bottom_sheet.dart' and 'package:modal_bottom_sheet/src/bottom_sheet_route.dart'. ../…/src/material_with_modal_page_route.dart:4 import '../modal_bottom_sheet.dart'; ^^^^^^^^^^^^^^^^^^^^^ : Error: 'ModalBottomSheetRoute' is imported from both 'package:flutter/src/material/bottom_sheet.dart' and 'package:modal_bottom_sheet/src/bottom_sheet_route.dart'. ../…/bottom_sheets/material_bottom_sheet.dart:28 .push(ModalBottomSheetRoute( ^^^^^^^^^^^^^^^^^^^^^ : Error: A value of type 'Object?' can't be returned from an async function…

VIEW QUESTION
Back To Top
Search