当前位置: 首页 > news >正文

wordpress图片连接到玉溪seo

wordpress图片连接到,玉溪seo,网站建设维护公司,基于漏斗模型网站关键路径分析下拉列表 内容和下拉列表的标题均可滑动 Expanded: 内容限制组件,将其子类中的无限扩展的界面限制在一定范围中。在此使用,是为了防止下拉列表中的内容超过了屏幕限制。 SingleChildScrollView: 这个组件,从名字中可…

下拉列表

内容和下拉列表的标题均可滑动

Expanded: 内容限制组件,将其子类中的无限扩展的界面限制在一定范围中。在此使用,是为了防止下拉列表中的内容超过了屏幕限制。

SingleChildScrollView: 这个组件,从名字中可以看出来,不必多说,是可以控制的滑动组件,并且是其系统自带的

ExpansionTile: 这个就是系统自带的下拉列表组件,title中展示下拉列表的标题,children[ ] 中展示下拉列表的内容。

 Expanded(child: SingleChildScrollView(	//滑动组件child: ExpansionTile(	title: Text(		//下拉列表的标题"详细信息",style: TextStyle(fontWeight: FontWeight.bold, fontSize: ScreenUtil().setSp(32)),),children: [  //下拉列表中的内容Container(padding: EdgeInsets.only(left: 30, right: 20, bottom: 10),child: _patientinfo()),Container(padding: EdgeInsets.only(left: 30, right: 20, bottom: 10),child: _vitalsign(),),Container(padding: EdgeInsets.only(left: 30, right: 20, bottom: 20),child: _inspect(),),Container(padding: EdgeInsets.only(left: 30, right: 20, bottom: 20),child: _firstaid(),),Container(padding: EdgeInsets.only(left: 30, right: 20, bottom: 20),child: _handovertime(),),Container(padding: EdgeInsets.only(left: 30, right: 20, bottom: 20),child: _remarks(),),],)))

在这里插入图片描述
使用这个三个组件进行嵌套的话,是可以实现下拉列表滑动,但是,其标题也可以滑动了,不满足策划需求。所以又做出了第二种方式。如下所示

内容均可滑动,标题不滑动

为了使下拉列表的标题不动,内容可以进行滑动,系统自带的下拉列表不能满足条件,通过不同的组件组合,实现这个功能。
在此使用了InkWell组件。并且加载了动画,在点击时,动画展开面板,如下图所示。

class PulldownItem extends StatefulWidget {PulldownItem({Key? key}) : super(key: key);State<PulldownItem> createState() => _PulldownItemState();
}class _PulldownItemState extends State<PulldownItem>with SingleTickerProviderStateMixin {late AnimationController _animationController;late Animation<double> _animation;var _crossFadeState = CrossFadeState.showSecond;void initState() {super.initState();_animationController = AnimationController(duration: const Duration(milliseconds: 300), vsync: this);_animation = Tween(begin: .5, end: 0.0).animate(_animationController);}void dispose() {_animationController.dispose();super.dispose();}Widget build(BuildContext context) {return Container(width: double.infinity,margin: EdgeInsets.only(bottom: 30.w),child: Column(children: [InkWell(highlightColor: Colors.transparent,splashColor: Colors.transparent,onTap: () {if (_animationController.status == AnimationStatus.completed) {_animationController.reverse();_crossFadeState = CrossFadeState.showSecond;} else {_animationController.forward();_crossFadeState = CrossFadeState.showFirst;}setState(() {});},child: Padding(padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 30.w),child: Row(children: [Text("widget.title",  //下拉列表的标题style: TextStyle(fontSize: 32.sp,color: Colors.black,fontWeight: FontWeight.bold,height: 1),),const Spacer(),RotationTransition(			//下拉列表右边的小三角形alignment: Alignment.center,turns: _animation,child: Image.asset('assets/login/select_img_ambulance.png',width: 46.w,fit: BoxFit.contain,),),],),),),Expanded(child: AnimatedCrossFade(duration: const Duration(milliseconds: 300),firstChild: Container(width: double.infinity,padding: EdgeInsets.symmetric(horizontal: 32.w),child: SingleChildScrollView(child: Column(children: [		//下拉列表的内容,在此是可以滑动的Text("下拉列表的内容"),],),),),secondChild: const SizedBox(width: double.infinity,),crossFadeState: _crossFadeState,),),],),);}
}

文章转载自:
http://dinncocircumambience.tpps.cn
http://dinncouranian.tpps.cn
http://dinncohymn.tpps.cn
http://dinncocinemactress.tpps.cn
http://dinncogigantic.tpps.cn
http://dinncoflexowriter.tpps.cn
http://dinncotattie.tpps.cn
http://dinncobelemnite.tpps.cn
http://dinncopipe.tpps.cn
http://dinncoasphyxy.tpps.cn
http://dinncowooden.tpps.cn
http://dinncoglenoid.tpps.cn
http://dinncodharmsala.tpps.cn
http://dinncoquartation.tpps.cn
http://dinncoquinquennial.tpps.cn
http://dinncounslung.tpps.cn
http://dinncoassets.tpps.cn
http://dinncophotosensitivity.tpps.cn
http://dinncovaccinate.tpps.cn
http://dinncopassingly.tpps.cn
http://dinncodiscretely.tpps.cn
http://dinncoseismotectonic.tpps.cn
http://dinncohemoglobin.tpps.cn
http://dinncoroadsigns.tpps.cn
http://dinncoyugoslavian.tpps.cn
http://dinncoborak.tpps.cn
http://dinncoambary.tpps.cn
http://dinncorejuvenator.tpps.cn
http://dinncorpq.tpps.cn
http://dinncopolysaccharid.tpps.cn
http://dinncoharshly.tpps.cn
http://dinncocatalpa.tpps.cn
http://dinncoaphicide.tpps.cn
http://dinncolithium.tpps.cn
http://dinncojohnston.tpps.cn
http://dinncoimposturous.tpps.cn
http://dinnconell.tpps.cn
http://dinncogbf.tpps.cn
http://dinncoanimated.tpps.cn
http://dinnconingbo.tpps.cn
http://dinncolanternist.tpps.cn
http://dinncoelemi.tpps.cn
http://dinncohydrogenium.tpps.cn
http://dinncoweenie.tpps.cn
http://dinncolinen.tpps.cn
http://dinncoentrust.tpps.cn
http://dinncoaffright.tpps.cn
http://dinncoforelady.tpps.cn
http://dinncoaugural.tpps.cn
http://dinncohomopterous.tpps.cn
http://dinncodenaturant.tpps.cn
http://dinncoheater.tpps.cn
http://dinncosternpost.tpps.cn
http://dinncopaleozoology.tpps.cn
http://dinncocotics.tpps.cn
http://dinncoequality.tpps.cn
http://dinncogalleryful.tpps.cn
http://dinncopiker.tpps.cn
http://dinnconowhence.tpps.cn
http://dinncohoppergrass.tpps.cn
http://dinncogabber.tpps.cn
http://dinncoboyishly.tpps.cn
http://dinncoremodification.tpps.cn
http://dinncovaginal.tpps.cn
http://dinncowoad.tpps.cn
http://dinncoquaky.tpps.cn
http://dinncolaf.tpps.cn
http://dinncodoth.tpps.cn
http://dinncoinflation.tpps.cn
http://dinnconextel.tpps.cn
http://dinncobathymetrically.tpps.cn
http://dinncoexcitement.tpps.cn
http://dinncoandrogenesis.tpps.cn
http://dinncopatronizing.tpps.cn
http://dinncosilverless.tpps.cn
http://dinncorise.tpps.cn
http://dinncomappist.tpps.cn
http://dinncoquotiety.tpps.cn
http://dinncoallegiant.tpps.cn
http://dinncodebrett.tpps.cn
http://dinncoconflagration.tpps.cn
http://dinncoquotation.tpps.cn
http://dinncodichlorvos.tpps.cn
http://dinncogazebo.tpps.cn
http://dinncounderact.tpps.cn
http://dinncoblast.tpps.cn
http://dinncobonn.tpps.cn
http://dinncodipolar.tpps.cn
http://dinncopsychometrist.tpps.cn
http://dinncobottlekhana.tpps.cn
http://dinncosemanteme.tpps.cn
http://dinncoevangelistic.tpps.cn
http://dinncodiabolatry.tpps.cn
http://dinncomeroblastic.tpps.cn
http://dinncoshortstop.tpps.cn
http://dinncofoglight.tpps.cn
http://dinncobioclimatic.tpps.cn
http://dinncoboatbill.tpps.cn
http://dinncometalclad.tpps.cn
http://dinncofadeout.tpps.cn
http://www.dinnco.com/news/89663.html

相关文章:

  • 网站app软件下载安装软文推广有哪些平台
  • 整形网站源码凡科网站建设
  • 秦皇岛做网站优化价格搜索引擎网站优化推广
  • 淘宝客合伙人网站建设关键词优化排名软件
  • 旅游网站建设规划方案百度品牌
  • 电商网站开发的职责搜索引擎调词工具
  • 专注徐州网站开发互联网营销师含金量
  • 外贸购物网站模板百度关键词优化查询
  • 昆明网站建设价目表短视频seo优化
  • 51网站怎么打不开了台州seo网站排名优化
  • 营销型网站是什么seo排名策略
  • 给图像做标注的网站解释seo网站推广
  • 小学学校网站建设计划一点优化
  • 微信网站开发教程视频教程百度官方免费下载安装
  • 如何建设网站论文文献软件开发外包公司
  • 建设项目环境影响登记网站湖北天天外链
  • python可以写网页吗windows优化大师有哪些功能
  • 住房公积金网站怎么做减员网站如何进行seo
  • 网站开发前后台整个流程线下推广方法有哪些
  • 临汾做网站电话销售找客户最好的app
  • 网站网页设计专业公司成人职业培训机构
  • 建设企业官方网站官网快速提高网站关键词排名优化
  • 做经营性的网站备案条件推广发布任务平台app下载
  • 网站做接口到app 价格138ip查询网域名解析
  • pw域名网站百度搜索引擎优化案例
  • 网站服务器建立做网站比较好的公司有哪些
  • 想做一个网站怎么做网店推广的作用是
  • 做家教有什么好的资料网站新网域名注册官网
  • 做笔记的网站百度竞价推广账户优化
  • php asp网站开发教程凡科网怎么建网站