Parse Issue (Xcode): Module 'fluttertoast' not found
/Users/anand/StudioProjects/untitled/ios/Runner/GeneratedPluginRegistrant.m:11:8
Could not build the application for the simulator.
Error launching application on iPhone 11 Pro.
我捕获这个错误几乎24小时。请帮助别人,我使用的fluttertoast: ^8.0.9
库最大的地方在我的项目,如果我删除库项目照常运行,但如果我添加库上述错误抛出。我不知道如何摆脱错误。我尝试了大部分的答案在堆栈溢出。
import 'package:flutter/material.dart';
import 'package:fluttertoast/fluttertoast.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text(
'Hello flutter',
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: (){
Fluttertoast.showToast(
msg: "This is Center Short Toast",
toastLength: Toast.LENGTH_SHORT,
gravity: ToastGravity.CENTER,
timeInSecForIosWeb: 1,
backgroundColor: Colors.red,
textColor: Colors.white,
fontSize: 16.0
);
},
tooltip: 'Increment',
child: const Icon(Icons.add),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
}
请帮助我怎样消除这个错误。
5条答案
按热度按时间x0fgdtte1#
试试这个,对我很有效!
ev7lccsx2#
尝试步骤:
1.删除IOS文件夹中的**“podfile”和“podfile. Lock”**文件
1.终端执行:在IOS文件目录中执行
flutter clean
”1.在Android studio的. Yaml文件中执行
flutter pub get
1.终端执行:在IOS目录中执行
pod install
”l5tcr1uw3#
尝试安装cocoapod,它是swift和objective c的依赖管理器,然后运行命令
在Flutter项目的iOS文件夹中。这应该是相同的任何flutter插件,我们将在该项目中设置。请检查此链接以及macos-deploy-to-ios-devices
c6ubokkw4#
我也面临着同样的问题,首先我运行了清洁:
然后运行酒吧get:
下一步,运行以下命令:
从日志输出中,我们可以找到pod安装的
fluttertoast
依赖项:然后在xcode success中构建项目。
nfzehxib5#
首先,试试这个:
1.进入ios文件夹
1.删除Podfile.lock文件
rm -rf Pods
pod cache clean --all
pod deintegrate
pod setup
pod install
pod upgrade
如果这不起作用,请尝试:
1.通过VSCode打开项目
1.检查
ios > Pods
文件夹中的Toast
文件夹。1.如果该文件夹存在,请通过VSCode运行
flutter build ios
1.如果生成成功,请尝试在XCode上运行该项目。
这对我很有效!