Home > front end >  Error: 'ModalBottomSheetRoute' is imported from both
Error: 'ModalBottomSheetRoute' is imported from both

Time:12-10

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

import 'material.dart' hide ModalBottomSheetRoute;

CodePudding user response:

The problem there is both class named "ModalBottomSheetRoute" found in flutter material and plugin "modal_bottom_sheet"

this happened with me when try to use flutter v3.7.0 beta sdk

#Fix this issue

Search for any file import"material.dart" at plugin "modal_bottom_sheet"

import 'material.dart';

Replace by:

import 'material.dart' hide ModalBottomSheetRoute;

CodePudding user response:

You can use as prefix to import.

import 'package:modal_bottom_sheet/src/bottom_sheet_route.dart' as mbs;

then use the package like mbs.YourClass()

  • Related