shijia2118
shijia2118
Please merge to Flutter 3.0,thank you!
Thank you!
When I first entered the page on IOS 15.4.1, it gave me a black screen. I need to switch to the background and come back for it to work. But...
我的项目中,使用了rammus和tobias两个插件。一开始,报uuid冲突。后来用alipay no-uuid SDK替换了tobias中的SDK。冲突问题是解决了,但是提交appstore时,被拒绝了,理由是no-uuid SDK中使用了uiwebview. 不知道有没有和我同样问题的小伙伴,大家是怎么解决的?
您好,您的bugly插件确实不错,不过在使用中,遇到了几个问题,一直没法解决,请您帮忙看一下啊,谢谢! 1.FlutterBugly.onCheckUpgrade.listen监听更新策略 使用该方法监听时,info一直返回null,除非把app删除后才能收到。 2.FlutterBugly.getUpgradeInfo 使用该方法确实能获取到info,但是该策略是上一次的更新策略,而非最新的。比如:当前bugly平台上上一个版本为1.0.1,最新版本为1.0.2.本地版本为1.0.0.此时获取到的是1.0.1的策略,无法获取最新策略。 3.FlutterBugly.checkUpgrade() 该方法始终会返回“当前已经是最新版本”,即使我的本地版本不是最新版本时,也会返回该文案。另外,我也尝试了多种方式,无法隐藏该文案。 请您抽空帮忙看一下哈,谢谢!
If I add 2 different widgets to a project, the ios runtime will get an error: Multiple commands produce... .. Runner.build/Objects-normal/x86_64/ConfigurationIntent.o '. I know that this should not be the...
android端跑demo时,按照阿里云文档集成后,仍然收不到消息。deviceId没有数据。
在flutter的body中嵌入原生视图: @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: const Text('发现')), body: PangrowthVideo.gridVideoView( viewWidth: MediaQuery.of(context).size.width, viewHeight: 650, ), ); } 点击gridview的item进入视频播放页面,点击播放页面的返回键,返回到flutter页面后,所嵌入的上述gridview的原生视图的整体位置上移到了顶部。请问该怎么解决?
您好!我的项目需要选择的日期格式为:年月日时分秒,所以我选择了DatimePicker对象。不过在拉起日期选择器时,默认选中的日期不是我所设置的或者我上一次选择的日期,而是开始时间。以下是相关的代码: DatimeEntity defaultEntity = getDateTimeEntity(time); DatimeEntity beginEntity = getDateTimeEntity("2024-01-01 00:00:00.000"); DatimeEntity endEntity = DatimeEntity.yearOnFuture(1); picker.setBodyWidth(500); DatimeWheelLayout wheelLayout = picker.getWheelLayout(); wheelLayout.setDateMode(DateMode.YEAR_MONTH_DAY); wheelLayout.setTimeMode(TimeMode.HOUR_24_HAS_SECOND); wheelLayout.setDefaultValue(defaultEntity); wheelLayout.setRange(beginEntity, endEntity); wheelLayout.setIndicatorEnabled(true); wheelLayout.setIndicatorColor(getResources().getColor(R.color.button)); wheelLayout.setIndicatorSize(getResources().getDisplayMetrics().density * 2); wheelLayout.setSelectedTextColor(getResources().getColor(R.color.button));...
hello,in my case,i have a list in the page.and on every item,there will be a shift button. user will click the button,and the two adjacent cards need to switch places....