123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037 |
- import 'dart:io';
- import 'package:flutter/foundation.dart';
- import 'package:flutter/material.dart';
- import 'package:flutter/rendering.dart';
- import 'package:flutter_cupertino_date_picker/flutter_cupertino_date_picker.dart';
- import 'package:flutter_picker/flutter_picker.dart';
- import 'package:flutter_screenutil/flutter_screenutil.dart';
- import 'package:flutter_spinkit/flutter_spinkit.dart';
- import 'package:flutter_swiper/flutter_swiper.dart';
- import 'package:liftmanager/internal/bbs/bbs_router.dart';
- import 'package:liftmanager/internal/bbs/model/banner_model.dart' as banner;
- import 'package:liftmanager/internal/bbs/model/mix_model.dart';
- import 'package:liftmanager/internal/bbs/model/search_model.dart';
- import 'package:liftmanager/internal/means/page/means_pdf.dart';
- import 'package:liftmanager/internal/news/model/news_comm_entity.dart';
- import 'package:liftmanager/internal/news/news_router.dart';
- import 'package:liftmanager/internal/work/work_router.dart';
- import 'package:liftmanager/res/iconfont.dart';
- import 'package:liftmanager/res/resources.dart';
- import 'package:liftmanager/routers/fluro_navigator.dart';
- import 'package:liftmanager/utils/image_utils.dart';
- import 'package:liftmanager/utils/theme_utils.dart';
- import 'package:liftmanager/utils/time_format.dart';
- import 'package:liftmanager/utils/utils.dart';
- import 'package:liftmanager/widgets/load_image.dart';
- import 'package:path_provider/path_provider.dart';
- class SwipeWidget extends StatelessWidget {
- const SwipeWidget({Key key, this.banners}) : super(key: key);
- final List<banner.Records> banners;
- // List<String> bannersLL = <String> [
- // 'tab_first/banner',
- // 'tab_first/banner',
- // 'tab_first/banner',
- // ];
- Future<File> createFileOfPdfUrl(url) async {
- final filename = url.substring(url.lastIndexOf("/") + 1);
- var request = await HttpClient().getUrl(Uri.parse(url));
- var response = await request.close();
- var bytes = await consolidateHttpClientResponseBytes(response);
- String dir = (await getApplicationDocumentsDirectory()).path;
- File file = new File('$dir/$filename');
- await file.writeAsBytes(bytes);
- return file;
- }
- @override
- Widget build(BuildContext context) {
- double width = MediaQuery.of(context).size.width;
- double height = 180;
- return Container(
- width: width,
- height: height,
- child: ClipRRect(
- borderRadius: BorderRadius.all(Radius.circular(10)),
- child: Swiper(
- index: 0,
- itemBuilder: (BuildContext context, index) {
- return GestureDetector(
- onTap: () {
- if (banners[index].jumpType == 2) {
- print('${banners[index].jumpType}');
- NavigatorUtils.push(
- context,
- "${WorkRouter.webview}?title=" +
- Uri.encodeComponent("详情") +
- "&url=" +
- Uri.encodeComponent(banners[index].url));
- } else if (banners[index].jumpType == 1) {
- print('777');
- createFileOfPdfUrl(banners[index].url).then((f) {
- // setState(() {
- // pathPDF = f.path;
- Navigator.push(
- context,
- MaterialPageRoute(
- builder: (context) =>
- PDFScreen(f.path, "null", "null")));
- // });
- });
- }
- },
- child: Container(
- width: width,
- height: height,
- key: UniqueKey(),
- // margin:EdgeInsets.only(left:15,right:15),
- child: LoadNetworkImage(
- banners[index].image,
- width: width,
- height: height,
- fit: BoxFit.fill,
- ),
- ),
- );
- },
- pagination: SwiperPagination(
- builder: RectSwiperPaginationBuilder(
- color: Colors.grey,
- activeColor: Colors.white,
- size: Size(12, 10),
- activeSize: Size(16, 10),
- ),
- ),
- itemCount: banners.length,
- scrollDirection: Axis.horizontal,
- autoplay: true,
- onTap: (index) {
- // print(index);
- },
- ),
- ));
- }
- }
- class Diagnosis extends StatelessWidget {
- Diagnosis({Key key, this.fun}) : super(key: key);
- List<dynamic> diagnosisObj = [
- {
- "title": "快速问诊",
- "img": "tab_first/Diagnosis_first",
- "desc": "搜电梯品牌 找专家咨询",
- },
- {
- "title": "出诊",
- "img": "tab_first/Diagnosis_second",
- "desc": "在线预约 上门服务",
- },
- ];
- Function fun;
- List<Widget> listWidget(context) => diagnosisObj.asMap().keys.map((i) {
- return GestureDetector(
- child: Container(
- color: ThemeUtils.getTabsBg(context),
- padding: EdgeInsets.only(
- left: 15,
- right: 15,
- // top: ScreenUtil().setHeight(15),
- bottom: 20),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- Row(
- children: <Widget>[
- LoadAssetImage(
- // image: AssetImage(i['img']),
- diagnosisObj[i]["img"],
- width: 40,
- height: 40,
- // alignment: Alignment.centerLeft,
- ),
- SizedBox(width: 10),
- Container(
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- Text(
- diagnosisObj[i]["title"],
- style: TextStyle(fontSize: 22),
- textAlign: TextAlign.start,
- ),
- Text(
- diagnosisObj[i]["desc"],
- style: TextStyle(
- color: Color(0xff999999), fontSize: 14),
- textAlign: TextAlign.start,
- ),
- ],
- ),
- ),
- ],
- ),
- Container(
- child: Icon(
- Icons.keyboard_arrow_right,
- color: Color(0xffcccccc),
- ),
- )
- ]),
- ),
- onTap: () {
- if (i == 0 &&
- !Utils.getAuthByRouter(context, 'quick_consultation')) {
- return false;
- }
- if (i == 1 && !Utils.getAuthByRouter(context, 'quich_visit')) {
- return false;
- }
- String index = i.toString();
- NavigatorUtils.push(context, "${BbsRouter.brandPage}?index=$index");
- },
- );
- }).toList();
- @override
- Widget build(BuildContext context) {
- return Card(
- margin: EdgeInsets.all(ScreenUtil().setWidth(10)),
- //设置圆角度,也可以不设置有默认值
- shape: RoundedRectangleBorder(
- //形状
- //修改圆角
- borderRadius: BorderRadius.all(Radius.circular(10)),
- ),
- //阴影颜色
- // color: Colors.orangeAccent,
- //阴影高度
- elevation: 1.0,
- child: ClipRRect(
- borderRadius: BorderRadius.all(Radius.circular(10)),
- child: Container(
- padding: EdgeInsets.only(top: 20),
- child: Column(children: listWidget(context)),
- ),
- ),
- );
- }
- }
- class QuestionCell extends StatelessWidget {
- QuestionCell({this.item});
- final dynamic item;
- @override
- Widget build(BuildContext context) {
- if (item is Records || item is InfoList) {
- } else {
- return Container();
- // data = NewsItems();
- }
- return GestureDetector(
- child: Container(
- padding: EdgeInsets.only(
- top: 10,
- bottom: 10,
- ),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- Text(
- "${item.title ?? ''}",
- textAlign: TextAlign.left,
- style: TextStyle(
- fontSize: 14,
- color: Color(0xff333333),
- ),
- maxLines: 1,
- overflow: TextOverflow.ellipsis,
- ),
- SizedBox(
- height: 5,
- ),
- Row(
- children: <Widget>[
- ClipRRect(
- borderRadius: BorderRadius.circular(15),
- child: Container(
- child: LoadNetworkImage(
- item?.avatarUrl,
- // fit: BoxFit.fitWidth,
- width: 31,
- height: 31,
- ),
- )),
- SizedBox(
- width: 5,
- ),
- Text(
- item.userName ?? '',
- style: TextStyle(
- fontSize: 14,
- fontWeight: FontWeight.w500,
- color: Color(0xff565A64),
- ),
- ),
- SizedBox(width: 5),
- _clipText(
- title: 'LV1',
- bgcolor: Color(0xffFD5E62),
- textcolor: Colors.white),
- ],
- ),
- SizedBox(
- height: 10,
- ),
- Text(
- item.expression ?? '',
- textAlign: TextAlign.left,
- style: TextStyle(
- color: Color(0xff999999),
- fontSize: 12,
- ),
- maxLines: 2,
- overflow: TextOverflow.ellipsis,
- ),
- Container(
- padding: EdgeInsets.only(
- top: ScreenUtil().setHeight(5),
- bottom: ScreenUtil().setHeight(5)),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.start,
- children: item.imgs != null && item.imgs.isNotEmpty
- ? List<Widget>.from(
- item.imgs.split(",").asMap().keys.map((index) {
- // print(item);
- return index < 3
- ? Container(
- padding:
- index < item.imgs.split(",").length - 1
- ? EdgeInsets.only(right: 6)
- : EdgeInsets.only(right: 0),
- // color:Colors.red,
- // decoration: BoxDecoration(
- // borderRadius: BorderRadius.circular(20.0),
- // ),
- child: ClipRRect(
- borderRadius: BorderRadius.circular(10),
- child: LoadNetworkImage(
- item.imgs.split(",")[index],
- fit: BoxFit.fill,
- height: ScreenUtil().setWidth(80),
- width: ScreenUtil().setWidth(110),
- isWater: true,
- ),
- ),
- )
- : Container(child: null);
- }).toList())
- : <Widget>[]),
- ),
- Row(
- children: [
- _clipText(
- title: "${item.brandName ?? ''}",
- bgcolor: Color.fromRGBO(67, 141, 250, .16),
- textcolor: Color(0xFF5887FF)),
- Expanded(child: Container()),
- Text(
- "${item.browseNum ?? '0'}浏览·${item.likeNum ?? '0'}赞",
- textAlign: TextAlign.right,
- style: TextStyle(
- color: Color(0xFFCCCCCC),
- fontSize: 11,
- ),
- )
- ],
- ),
- SizedBox(
- height: 10,
- ),
- ]),
- ),
- onTap: () {
- NavigatorUtils.push(
- context, "${BbsRouter.questionDetail}?id=${item.id.toString()}");
- },
- );
- }
- _clipText({title, bgcolor, textcolor}) {
- return ClipRRect(
- borderRadius: BorderRadius.all(Radius.circular(3)),
- child: Container(
- color: bgcolor,
- padding: EdgeInsets.all(3),
- alignment: Alignment.center,
- child: Text(
- title,
- style: TextStyle(fontSize: 11, color: textcolor),
- ),
- ),
- );
- }
- }
- class HotQuestion extends StatelessWidget {
- const HotQuestion({Key key, this.initList}) : super(key: key);
- final List<dynamic> initList;
- @override
- Widget build(BuildContext context) {
- List<Widget> widgetList = [];
- for (int i = 0; i < initList.length; i++) {
- widgetList.add(Column(children: [
- QuestionCell(item: initList[i]),
- if (i != initList.length - 1) Divider(),
- ]));
- }
- return Container(
- color: Colors.white,
- padding: EdgeInsets.symmetric(horizontal: 10),
- child: Column(children: widgetList),
- );
- }
- }
- class HotClass {
- const HotClass({Key key, this.videoList});
- final List<dynamic> videoList;
- List<Widget> listWidget(context) => videoList.asMap().keys.map((i) {
- return GestureDetector(
- child: Container(
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- Expanded(
- flex: 1,
- child: AspectRatio(
- aspectRatio: 177 / 113,
- child: Stack(
- alignment: Alignment.center,
- children: <Widget>[
- Container(
- // color: Colors.red,
- child: SizedBox.expand(
- child: ClipRRect(
- borderRadius: BorderRadius.circular(10),
- child: LoadNetworkImage(
- videoList[i].cover,
- isWater: true,
- ),
- )),
- ),
- Image.asset(ImageUtils.getImgPath('play_button')),
- ],
- ))),
- Container(
- padding: EdgeInsets.only(top: 5, left: 5),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Text(
- videoList[i].title ?? "",
- textAlign: TextAlign.left,
- style:
- TextStyle(fontSize: 14, color: Color(0xff565A64)),
- maxLines: 1,
- overflow: TextOverflow.ellipsis,
- ),
- Text(
- videoList[i].descr ?? "",
- textAlign: TextAlign.left,
- overflow: TextOverflow.ellipsis,
- maxLines: 1,
- style: TextStyle(
- fontSize: 12,
- color: Color(0xff9a9a9a),
- ),
- ),
- SizedBox(height: 10),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Container(
- padding: EdgeInsets.all(3),
- decoration: BoxDecoration(
- color: Color(0x33448EFA),
- borderRadius: BorderRadius.circular(4),
- ),
- child: Text(
- videoList[i].brandName != null
- ? videoList[i].brandName.toString()
- : "",
- textAlign: TextAlign.left,
- overflow: TextOverflow.ellipsis,
- style: TextStyle(
- fontSize: 11,
- color: Color(0xff5888FF),
- ),
- )),
- Text(
- "${videoList[i].browseNum ?? '0'}浏览·${videoList[i].likeNum ?? '0'}赞",
- textAlign: TextAlign.left,
- maxLines: 1,
- overflow: TextOverflow.ellipsis,
- style: TextStyle(
- fontSize: 11,
- color: Color(0xffCCCCCC),
- ),
- ),
- ],
- ),
- ],
- ))
- ])),
- onTap: () {
- print(i);
- NavigatorUtils.push(context,
- "${BbsRouter.videoDetail}?id=${videoList[i].id.toString()}");
- },
- );
- }).toList();
- List<Widget> listVideo(context) => videoList.map((e) {
- return VideoCell(e);
- }).toList();
- }
- class VideoCell extends StatelessWidget {
- dynamic data;
- VideoCell(this.data);
- @override
- Widget build(Object context) {
- if (data is Records || data is InfoList) {
- } else {
- return Container();
- // data = NewsItems();
- }
- return GestureDetector(
- child: Container(
- height: 116,
- padding: EdgeInsets.symmetric(vertical: 10),
- decoration: BoxDecoration(
- border: Border(
- bottom: BorderSide(width: 0.5, color: Colours.line),
- ),
- ),
- child: LayoutBuilder(
- builder: (context, constraints) => Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- Container(
- // padding: EdgeInsets.only(top: 5, left: 5),
- width: constraints.maxWidth - 167,
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: [
- Text(
- data.title ?? "",
- textAlign: TextAlign.left,
- style: TextStyle(
- fontSize: 14, color: Color(0xff565A64)),
- maxLines: 1,
- overflow: TextOverflow.ellipsis,
- ),
- Expanded(
- child: Text(
- data.descr ?? "",
- textAlign: TextAlign.left,
- overflow: TextOverflow.ellipsis,
- maxLines: 1,
- style: TextStyle(
- fontSize: 12,
- color: Color(0xff9a9a9a),
- ),
- )),
- Row(
- mainAxisAlignment:
- MainAxisAlignment.spaceBetween,
- children: [
- Container(
- padding: EdgeInsets.all(3),
- decoration: BoxDecoration(
- color: Color(0x33448EFA),
- ),
- child: Text(
- data.brandName != null
- ? data.brandName.toString()
- : "",
- textAlign: TextAlign.left,
- overflow: TextOverflow.ellipsis,
- style: TextStyle(
- fontSize: 11,
- color: Color(0xff5888FF),
- ),
- )),
- Text(
- "${data.browseNum ?? '0'}浏览·${data.likeNum ?? '0'}赞",
- textAlign: TextAlign.left,
- maxLines: 1,
- overflow: TextOverflow.ellipsis,
- style: TextStyle(
- fontSize: 11,
- color: Color(0xffCCCCCC),
- ),
- ),
- ],
- ),
- ],
- )),
- Stack(
- alignment: Alignment.center,
- children: <Widget>[
- SizedBox(
- width: 147,
- height: 96,
- child: ClipRRect(
- borderRadius: BorderRadius.circular(10),
- child: LoadNetworkImage(
- data.cover,
- isWater: true,
- ),
- )),
- Image.asset(ImageUtils.getImgPath('play_button')),
- ],
- ),
- ]))),
- onTap: () {
- NavigatorUtils.push(
- context, "${BbsRouter.videoDetail}?id=${data.id.toString()}");
- },
- );
- }
- }
- class HotProduct extends StatelessWidget {
- HotProduct({Key key, this.productList}) : super(key: key);
- final List<dynamic> productList;
- List<Widget> listWidget(context) => productList.map((i) {
- return ProductCell(i);
- }).toList();
- @override
- Widget build(BuildContext context) {
- return Container(
- color: Colors.white,
- child: Column(children: listWidget(context)),
- );
- }
- }
- class ProductCell extends StatelessWidget {
- final dynamic data;
- ProductCell(this.data);
- @override
- Widget build(Object context) {
- if (data is Records || data is InfoList) {
- } else {
- return Container();
- // data = NewsItems();
- }
- return InkWell(
- child: Container(
- height: 110,
- padding: EdgeInsets.only(left: 0, right: 0, top: 10, bottom: 10),
- decoration: BoxDecoration(
- border: Border(
- bottom: BorderSide(color: Color(0xffF9F9F9)),
- ),
- ),
- child: Row(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- ClipRRect(
- borderRadius: BorderRadius.circular(10),
- child: LoadNetworkImage(
- (data?.imgs ?? '').split(",")[0],
- width: ScreenUtil().setWidth(90),
- height: ScreenUtil().setWidth(90),
- isWater: true,
- ),
- ),
- SizedBox(
- width: 10,
- ),
- Expanded(
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- Container(
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: [
- Expanded(
- child: Text(
- data.name ?? "",
- textAlign: TextAlign.left,
- // overflow: TextOverflow.ellipsis,
- style: TextStyle(
- fontSize: 14,
- ),
- maxLines: 1,
- overflow: TextOverflow.ellipsis,
- ),
- ),
- if (data.discountPrice != null)
- Text(
- '¥${data.discountPrice.toInt()}',
- style: TextStyle(
- color: Color(0xffFF5C00),
- fontSize: 16,
- ),
- ),
- if (data.discountPrice == null)
- Text(
- '¥${data.price?.toInt() ?? '暂无'}',
- style: TextStyle(
- color: Color(0xffFF5C00),
- fontSize: 16,
- ),
- ),
- if (data.discountPrice != null)
- Text(
- '¥${data.price.toInt()}',
- style: TextStyle(
- color: Color(0xff999999),
- fontSize: 11,
- decoration: TextDecoration.lineThrough,
- ),
- ),
- ],
- )),
- if (data.brandName != null)
- Container(
- padding: EdgeInsets.all(3),
- decoration: BoxDecoration(
- borderRadius: BorderRadius.circular(3),
- color: Color(0x33448EFA),
- ),
- child: Text(
- data.brandName,
- textAlign: TextAlign.left,
- style: TextStyle(
- fontSize: 11,
- color: Color(0xff5887FF),
- ),
- maxLines: 1,
- overflow: TextOverflow.ellipsis,
- ),
- ),
- Spacer(),
- Container(
- child: Row(
- children: [
- Icon(Iconfont.shangjia, size: 15, color: Colors.orange),
- SizedBox(width: 5),
- Text(
- "${data.manufacturer}",
- textAlign: TextAlign.left,
- style: TextStyle(
- fontSize: 11,
- color: Color(0xff666666),
- ),
- maxLines: 1,
- overflow: TextOverflow.ellipsis,
- ),
- ],
- ),
- ),
- ],
- ),
- ),
- ],
- ),
- ),
- onTap: () {
- NavigatorUtils.push(
- context, "${BbsRouter.productDetail}?id=${data.id.toString()}");
- },
- );
- }
- }
- class HotNews extends StatelessWidget {
- HotNews({Key key, this.newsList}) : super(key: key);
- final List<dynamic> newsList;
- @override
- Widget build(BuildContext context) {
- return Container(
- color: Colors.white,
- child: Column(
- children: newsList.map((i) {
- return NewsCell(i);
- }).toList()),
- );
- }
- }
- class NewsCell extends StatelessWidget {
- final dynamic data;
- NewsCell(this.data);
- @override
- Widget build(BuildContext context) {
- double width = MediaQuery.of(context).size.width;
- if (data is NewsItems || data is InfoList) {
- } else {
- return Container();
- // data = NewsItems();
- }
- return InkWell(
- onTap: () {
- NavigatorUtils.push(context, "${NewsRouter.newsDetail}?id=${data.id}");
- },
- child: Container(
- width: width,
- padding: EdgeInsets.symmetric(vertical: 10),
- decoration: BoxDecoration(
- border: Border(
- bottom: BorderSide(width: 1, color: Colours.line),
- ),
- color: ThemeUtils.getTabsBg(context)),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- Text(
- data.title,
- style: TextStyle(fontSize: 15),
- // overflow: TextOverflow.ellipsis,
- ),
- Gaps.vGap12,
- Text(
- "${data?.releaseUser ?? ''}·阅读${data?.lookNum ?? 0}次·点赞${data?.likeNum ?? 0}",
- style: TextStyle(fontSize: 11, color: Colours.text_gray),
- ),
- ],
- ),
- ),
- );
- }
- }
- class HotPosition extends StatelessWidget {
- HotPosition({Key key, this.positionList}) : super(key: key);
- final List<dynamic> positionList;
- List<Widget> listWidget(context) => positionList.map((i) {
- return PositionCell(i);
- }).toList();
- @override
- Widget build(BuildContext context) {
- return Container(
- color: Colors.white,
- child: Column(children: listWidget(context)),
- );
- }
- }
- class PositionCell extends StatelessWidget {
- final dynamic data;
- PositionCell(this.data);
- @override
- Widget build(BuildContext context) {
- double width = MediaQuery.of(context).size.width;
- if (data is Records || data is InfoList) {
- } else {
- return Container();
- // data = NewsItems();
- }
- return InkWell(
- child: Container(
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- Container(
- width: width,
- padding: EdgeInsets.only(bottom: ScreenUtil().setHeight(5)),
- child: Row(
- children: <Widget>[
- if (data.hotFlag == 1) ...[
- Container(
- padding: EdgeInsets.all(2),
- decoration: BoxDecoration(
- color: Color(0xffFBC247),
- borderRadius: BorderRadius.only(
- topLeft: Radius.circular(5),
- bottomRight: Radius.circular(5),
- ),
- ),
- child: Text(
- '热招',
- style: TextStyle(
- color: Colors.white,
- fontSize: 11,
- ),
- ),
- ),
- SizedBox(
- width: 5,
- ),
- ],
- Container(
- child: Text(
- data.job ?? "",
- style: TextStyle(
- fontSize: 14,
- color: Color(0xff565A64),
- fontWeight: FontWeight.w600,
- ),
- overflow: TextOverflow.ellipsis,
- ),
- ),
- Spacer(),
- Container(
- width: width * 0.4,
- child: Text(
- '${data.lowerSalary?.toInt()}-${data.upperSalary?.toInt()}/月',
- textAlign: TextAlign.right,
- style: TextStyle(
- fontSize: 14,
- color: Color(0xffFF5C00),
- ),
- overflow: TextOverflow.ellipsis,
- ),
- )
- ],
- ),
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- Text(
- "${data.provinceName ?? ''}${data.cityName ?? ''}",
- textAlign: TextAlign.right,
- style: TextStyle(
- fontSize: 13,
- color: Color(0xff9A9A9A),
- ),
- overflow: TextOverflow.ellipsis,
- ),
- Text(
- DateUtils.instance.getFormartData(
- timeSamp: data.createTime, format: "yyyy-MM-dd"),
- textAlign: TextAlign.left,
- style: TextStyle(
- fontSize: 12,
- color: Color(0xff9A9A9A),
- ),
- ),
- ],
- ),
- Text(
- data.company?.name ?? "",
- textAlign: TextAlign.left,
- style: TextStyle(
- fontSize: 14,
- color: Color(0xff666666),
- ),
- overflow: TextOverflow.ellipsis,
- ),
- SizedBox(
- height: 10,
- ),
- Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- Text(
- '${data.company?.corporator ?? ""} ${data.company?.telephone ?? ""}',
- textAlign: TextAlign.left,
- style: TextStyle(
- fontSize: 13,
- color: Color(0xff565A64),
- ),
- overflow: TextOverflow.ellipsis,
- ),
- Spacer(),
- Container(
- alignment: Alignment.center,
- padding: EdgeInsets.symmetric(horizontal: 15),
- height: 25,
- decoration: BoxDecoration(
- color: Color.fromRGBO(67, 141, 250, .16),
- borderRadius: BorderRadius.circular(12),
- ),
- child: Text(
- '申请',
- style: TextStyle(color: Color(0xff5888FF), fontSize: 13),
- ),
- ),
- ],
- ),
- SizedBox(
- height: 10,
- ),
- Divider(thickness: 0.5, height: 0.5),
- SizedBox(
- height: 10,
- ),
- ]),
- ),
- onTap: () {
- NavigatorUtils.push(
- context, "${BbsRouter.positionDetail}?id=${data.id}");
- },
- );
- }
- }
- class LabelTitle extends StatelessWidget {
- LabelTitle(
- {Key key,
- this.title,
- this.userTap,
- this.isMore = true,
- this.hasArrow = false,
- this.titleStyle})
- : super(key: key);
- final String title;
- final Function userTap;
- final bool isMore;
- final bool hasArrow;
- TextStyle titleStyle;
- @override
- Widget build(BuildContext context) {
- return GestureDetector(
- onTap: () {
- userTap();
- },
- child: Container(
- height: ScreenUtil().setHeight(45),
- padding: EdgeInsets.symmetric(horizontal: 10),
- alignment: Alignment.centerLeft,
- decoration: BoxDecoration(
- color: ThemeUtils.getTabsBg(context),
- border: Border(
- bottom: BorderSide(
- width: 0.5, color: ThemeUtils.getDialogTextFieldColor(context)),
- ),
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- Row(
- crossAxisAlignment: CrossAxisAlignment.center,
- children: <Widget>[
- Container(
- decoration: BoxDecoration(
- border: Border(
- // left: BorderSide(width: 3, color: Colours.app_main),
- )),
- child: Text(
- title,
- style: titleStyle,
- ),
- ),
- ],
- ),
- Container(
- child: Row(children: <Widget>[
- Text(
- isMore == true ? "更多" : '',
- style: TextStyle(
- fontSize: ScreenUtil().setSp(12), color: Color(0xFF666666)),
- ),
- hasArrow
- ? Container(
- child: Images.arrowRight,
- )
- : Container(child: null)
- ]))
- ],
- ),
- ),
- );
- }
- }
- class CommonSectionHeader extends StatelessWidget {
- final String title;
- final double fontSize;
- bool isMust;
- CommonSectionHeader(
- {this.title = '', this.fontSize = 15, this.isMust = false});
- @override
- Widget build(BuildContext context) {
- return Container(
- child: Row(
- children: [
- Container(
- width: 2,
- height: 15,
- decoration: BoxDecoration(
- border: Border(left: BorderSide(width: 2, color: Colors.blue)),
- ),
- ),
- SizedBox(
- width: 10,
- ),
- Text(
- title,
- style: TextStyle(
- fontSize: fontSize,
- color: Color(0xff333333),
- ),
- ),
- isMust
- ? Text(
- '*',
- style: TextStyle(
- fontSize: fontSize,
- color: Colors.red,
- ),
- )
- : Container(),
- ],
- ));
- }
- }
- class SectionHeader extends StatelessWidget {
- final String title;
- final Function onTap;
- final bool showMore;
- SectionHeader({this.title, this.onTap, this.showMore = false});
- @override
- Widget build(BuildContext context) {
- return GestureDetector(
- onTap: () {
- if (onTap != null) {
- onTap();
- }
- },
- child: Container(
- height: 40,
- child: Row(
- children: [
- Container(
- height: 13,
- width: 0,
- decoration: BoxDecoration(
- border: Border(
- left: BorderSide(
- width: 2,
- color: Color(0xff568AFF),
- ),
- ),
- ),
- ),
- SizedBox(
- width: 10,
- ),
- Expanded(
- child: Text(
- title,
- style: TextStyle(color: Color(0xff343434), fontSize: 15),
- ),
- ),
- if (showMore)
- Text(
- '更多',
- style: TextStyle(color: Color(0xff999999), fontSize: 12),
- ),
- SizedBox(
- width: 10,
- ),
- ],
- )));
- }
- }
- class FilterHeader extends StatelessWidget {
- final List<String> filterNameList;
- final Function(int index) onTap;
- final int activeIndex;
- FilterHeader({
- @required this.filterNameList,
- this.onTap,
- this.activeIndex = 0,
- });
- @override
- Widget build(BuildContext context) {
- var widgetList = [
- GestureDetector(
- child: Container(
- padding: EdgeInsets.symmetric(
- vertical: 13,
- // horizontal: 10,
- ),
- decoration: BoxDecoration(
- border: activeIndex == 0
- ? Border(
- bottom: BorderSide(
- width: 2,
- color: Color(0xff568AFF),
- ),
- )
- : null,
- ),
- child: Text(
- '全部',
- style: TextStyle(
- color: Color(0xff343434),
- fontSize: 14,
- ),
- ),
- ),
- onTap: () {
- if (onTap != null) onTap(0);
- },
- ),
- ];
- if (filterNameList != null) {
- widgetList.addAll(
- filterNameList.map(
- (e) => GestureDetector(
- child: Container(
- padding: EdgeInsets.symmetric(
- vertical: 13,
- // horizontal: 10,
- ),
- decoration: BoxDecoration(
- border: activeIndex == (filterNameList.indexOf(e) + 1)
- ? Border(
- bottom: BorderSide(
- width: 2,
- color: Color(0xff568AFF),
- ),
- )
- : null,
- ),
- child: Text(
- e,
- style: TextStyle(
- color: Color(0xff343434),
- fontSize: 14,
- ),
- ),
- ),
- onTap: () {
- var index = filterNameList.indexOf(e) + 1;
- if (onTap != null) onTap(index);
- },
- ),
- ),
- );
- }
- return Container(
- height: 45,
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceAround,
- children: widgetList,
- ),
- );
- }
- }
- class CustomFilterHeader extends StatelessWidget {
- final List<String> filterNameList;
- final Function(int index) onTap;
- final int activeIndex;
- CustomFilterHeader({
- @required this.filterNameList,
- this.onTap,
- this.activeIndex,
- });
- @override
- Widget build(BuildContext context) {
- var widgetList = [
- LayoutId(
- id: 0,
- child: GestureDetector(
- child: Container(
- padding: EdgeInsets.symmetric(
- vertical: 13,
- // horizontal: 10,
- ),
- decoration: BoxDecoration(
- border: activeIndex == 0
- ? Border(
- bottom: BorderSide(
- width: 2,
- color: Color(0xff568AFF),
- ),
- )
- : null,
- ),
- child: Text(
- '全部',
- style: TextStyle(
- color: Color(0xff343434),
- fontSize: 14,
- ),
- ),
- ),
- onTap: () {
- if (onTap != null) onTap(0);
- },
- ),
- ),
- ];
- if (filterNameList != null) {
- int loopCount = 0;
- for (var name in filterNameList) {
- var layoutId = ++loopCount;
- widgetList.add(
- LayoutId(
- id: layoutId,
- child: GestureDetector(
- child: Container(
- padding: EdgeInsets.symmetric(
- vertical: 13,
- // horizontal: 10,
- ),
- decoration: BoxDecoration(
- border: activeIndex == layoutId
- ? Border(
- bottom: BorderSide(
- width: 2,
- color: Color(0xff568AFF),
- ),
- )
- : null,
- ),
- child: Text(
- name,
- style: TextStyle(
- color: Color(0xff343434),
- fontSize: 14,
- ),
- ),
- ),
- onTap: () {
- if (onTap != null) onTap(layoutId);
- },
- ),
- ),
- );
- }
- }
- return Container(
- height: 45,
- child: CustomMultiChildLayout(
- children: widgetList,
- delegate: CustomFilterHeaderLayoutDelegate(
- widgetList.map<int>((e) => e.id).toList(),
- ),
- ),
- );
- }
- }
- class CustomFilterHeaderLayoutDelegate extends MultiChildLayoutDelegate {
- List<int> childIds;
- CustomFilterHeaderLayoutDelegate(this.childIds);
- @override
- void performLayout(Size size) {
- Size leaderSize = Size.zero;
- if (hasChild(0)) {
- leaderSize = layoutChild(0, BoxConstraints.loose(size));
- positionChild(0, Offset.zero);
- }
- var subIds = childIds.sublist(1);
- const spacing = 20;
- const threshold = 0;
- var offset = Offset.zero;
- for (var id in subIds) {
- if (hasChild(id)) {
- offset = Offset(offset.dx + leaderSize.width + spacing, 0);
- leaderSize = layoutChild(
- id,
- BoxConstraints.loose(size),
- );
- if (size.width - offset.dx - leaderSize.width > threshold) {
- positionChild(id, offset);
- } else {
- positionChild(id, Offset.infinite);
- }
- }
- }
- }
- @override
- bool shouldRelayout(covariant MultiChildLayoutDelegate oldDelegate) {
- return false;
- }
- }
- class ChioseThis extends StatelessWidget {
- ChioseThis(
- {Key key,
- this.list,
- this.value,
- this.label,
- this.isMust: false,
- this.fun,
- this.labelText = '请选择'})
- : super(key: key);
- List<dynamic> list;
- String value;
- String label;
- bool isMust;
- Function fun;
- String labelText;
- @override
- Widget build(BuildContext context) {
- double width = MediaQuery.of(context).size.width;
- return InkWell(
- onTap: () {
- showModalBottomSheet(
- context: context,
- builder: (context) {
- return Container(
- height: 80,
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: list.asMap().keys.map((index) {
- return InkWell(
- onTap: () {
- fun(index);
- },
- child: Container(
- width: width,
- padding: EdgeInsets.only(
- bottom: ScreenUtil().setWidth(10),
- top: ScreenUtil().setWidth(5)),
- decoration: BoxDecoration(
- border: Border(
- bottom: BorderSide(width: 0.5, color: Colours.line),
- ),
- ),
- child: Text(
- list[index],
- style: TextStyle(
- color: Color(0xff333333),
- fontSize: ScreenUtil().setSp(16)),
- textAlign: TextAlign.center,
- ),
- ),
- );
- }).toList(),
- ),
- );
- });
- },
- child: Container(
- padding: EdgeInsets.only(
- top: ScreenUtil().setWidth(15), bottom: ScreenUtil().setWidth(15)),
- margin: EdgeInsets.only(left: ScreenUtil().setWidth(15)),
- decoration: BoxDecoration(
- border: Border(
- bottom: BorderSide(width: 0.5, color: Colours.line),
- ),
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- Text(
- label,
- style: TextStyle(
- color: Color(0xff222222),
- // fontSize: ScreenUtil().setSp(14)
- ),
- textAlign: TextAlign.start,
- ),
- Offstage(
- offstage: !this.isMust,
- child: Text(
- " *",
- style: TextStyle(color: Colors.red),
- ),
- ),
- Expanded(flex: 1, child: Container()),
- value.isEmpty
- ? Container(
- child: Row(children: <Widget>[
- Text(
- labelText,
- style: TextStyle(
- color: Color(0xffcccccc),
- // fontSize: ScreenUtil().setSp(14)
- ),
- textAlign: TextAlign.start,
- ),
- Container(
- padding: EdgeInsets.only(top: 3),
- child: Icon(
- Icons.keyboard_arrow_right,
- size: 20.0,
- color: Color(0xffcccccc),
- ),
- ),
- SizedBox(width: 10)
- ]),
- )
- : Container(
- padding:
- EdgeInsets.only(right: ScreenUtil().setWidth(15)),
- child: Row(children: <Widget>[
- Text(
- value,
- style: TextStyle(
- color: Color(0xff222222),
- fontSize: ScreenUtil().setSp(14)),
- textAlign: TextAlign.start,
- ),
- ]),
- ),
- ]),
- ),
- );
- }
- }
- class DatePickerInputField extends StatelessWidget {
- DatePickerInputField(
- {Key key,
- this.value = '',
- this.label,
- this.isMust: false,
- this.onSelectionConfirmed,
- this.labelText = '请选择'})
- : super(key: key);
- final String value;
- final String label;
- final bool isMust;
- final Function(String birthday) onSelectionConfirmed;
- final String labelText;
- @override
- Widget build(BuildContext context) {
- return InkWell(
- onTap: () {
- DatePicker.showDatePicker(context,
- // pickerMode: DateTimePickerMode.date,
- dateFormat: 'yyyy-MM',
- locale: DateTimePickerLocale.zh_cn,
- // initialDateTime: DateTime.now(),
- maxDateTime: DateTime.now(),
- // onChange: (datetime, _){
- //
- // },
- onConfirm: (datetime, _) {
- this.onSelectionConfirmed(DateUtils()
- .getFormattedDateTimeStr(datetime: datetime, format: 'yyyy-MM'));
- });
- },
- child: Container(
- padding: EdgeInsets.only(
- top: ScreenUtil().setWidth(15), bottom: ScreenUtil().setWidth(15)),
- margin: EdgeInsets.only(left: ScreenUtil().setWidth(15)),
- decoration: BoxDecoration(
- border: Border(
- bottom: BorderSide(width: 0.5, color: Colours.line),
- ),
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- Text(
- label,
- style: TextStyle(
- color: Color(0xff222222),
- // fontSize: ScreenUtil().setSp(14)
- ),
- textAlign: TextAlign.start,
- ),
- Offstage(
- offstage: !this.isMust,
- child: Text(
- "*",
- style: TextStyle(color: Colors.red),
- ),
- ),
- Expanded(flex: 1, child: Container()),
- value.isEmpty
- ? Container(
- child: Row(children: <Widget>[
- Text(
- labelText,
- style: TextStyle(
- color: Color(0xffcccccc),
- // fontSize: ScreenUtil().setSp(14)
- ),
- textAlign: TextAlign.start,
- ),
- Container(
- padding: EdgeInsets.only(top: 3),
- child: Icon(
- Icons.keyboard_arrow_right,
- size: 20.0,
- color: Color(0xffcccccc),
- ),
- ),
- SizedBox(width: 10)
- ]),
- )
- : Container(
- padding:
- EdgeInsets.only(right: ScreenUtil().setWidth(15)),
- child: Row(children: <Widget>[
- Text(
- value,
- style: TextStyle(
- color: Color(0xff222222),
- fontSize: ScreenUtil().setSp(14)),
- textAlign: TextAlign.start,
- ),
- ]),
- ),
- ]),
- ),
- );
- }
- }
- class IsvideoList extends StatelessWidget {
- IsvideoList({Key key, this.list, this.fun}) : super(key: key);
- List<dynamic> list;
- Function fun;
- List<Widget> listWidget(context) => list.asMap().keys.map((i) {
- double width = MediaQuery.of(context).size.width;
- return GestureDetector(
- onTap: () {
- fun();
- },
- child: Container(
- padding: EdgeInsets.only(left: 10, right: 10, bottom: 5),
- width: width / 2,
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- Container(
- child: Stack(
- children: <Widget>[
- ClipRRect(
- borderRadius: BorderRadius.circular(5),
- child: Container(
- child: LoadAssetImage(
- list[i]["image"],
- width: 190,
- height: 140,
- ),
- ),
- ),
- Positioned(
- left: 77,
- top: 57,
- child: Icon(
- IconData(0xe607, fontFamily: "Iconfont"),
- size: 26.0,
- color: Colors.white,
- ),
- )
- ],
- )),
- Text(
- list[i]["title"],
- style: TextStyle(
- color: Color(0xff222222),
- fontSize: ScreenUtil().setSp(16)),
- textAlign: TextAlign.start,
- ),
- Text(
- list[i]["brand"],
- style: TextStyle(
- color: Color(0xff999999),
- fontSize: ScreenUtil().setSp(14)),
- textAlign: TextAlign.start,
- ),
- Text(
- "${list[i]["num"]}人点赞",
- style: TextStyle(
- color: Color(0xff999999),
- fontSize: ScreenUtil().setSp(14)),
- textAlign: TextAlign.start,
- ),
- ])),
- );
- }).toList();
- @override
- Widget build(BuildContext context) {
- return Container(
- color: Colors.white,
- child: Wrap(
- // children:null
- children: listWidget(context)),
- );
- }
- }
- class Heng extends StatelessWidget {
- Heng({Key key, this.left, this.right, this.leftColor, this.rightColor})
- : super(key: key);
- String left;
- String right;
- int leftColor;
- int rightColor;
- @override
- Widget build(BuildContext context) {
- return Container(
- padding: EdgeInsets.only(
- left: ScreenUtil().setWidth(15),
- right: ScreenUtil().setWidth(15),
- top: ScreenUtil().setWidth(10),
- bottom: ScreenUtil().setWidth(10)),
- decoration: BoxDecoration(
- border: Border(
- bottom: BorderSide(width: .5, color: Color(0xfff5f5f5)),
- ),
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- Text(
- left,
- style: TextStyle(color: Color(leftColor), fontSize: 14),
- textAlign: TextAlign.start,
- ),
- Text(
- right,
- style: TextStyle(color: Color(rightColor), fontSize: 14),
- textAlign: TextAlign.start,
- ),
- ]),
- );
- }
- }
- // 选择下拉
- class ChiosePicker extends StatefulWidget {
- ChiosePicker({
- Key key,
- this.range,
- this.value,
- this.label,
- this.isMust: false,
- this.onConfirm,
- this.placeholder = '请选择',
- }) : super(key: key);
- final List range;
- String value;
- final String label;
- final bool isMust;
- final String placeholder;
- final Function(String, int) onConfirm;
- @override
- _ChiosePickerState createState() => _ChiosePickerState();
- }
- class _ChiosePickerState extends State<ChiosePicker> {
- // String _value;
- showPickerModal(BuildContext context) {
- new Picker(
- cancelText: "取消",
- confirmText: "确认",
- adapter: PickerDataAdapter<String>(
- pickerdata: widget.range,
- ),
- changeToFirst: true,
- hideHeader: false,
- onConfirm: (Picker picker, List value) {
- widget.value = picker.getSelectedValues()[0];
- widget.onConfirm(picker.getSelectedValues()[0], value[0]);
- setState(() {});
- },
- ).showModal(this.context);
- }
- @override
- Widget build(BuildContext context) {
- // _value = widget.value;
- return InkWell(
- onTap: () {
- FocusScope.of(context).requestFocus(FocusNode());
- showPickerModal(context);
- },
- child: Container(
- padding: EdgeInsets.only(
- top: ScreenUtil().setWidth(15),
- bottom: ScreenUtil().setWidth(15),
- ),
- margin: EdgeInsets.only(left: ScreenUtil().setWidth(15)),
- decoration: BoxDecoration(
- border: Border(
- bottom: BorderSide(width: 0.5, color: Colours.line),
- ),
- ),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- Text(
- widget.label,
- style: TextStyle(
- // fontSize: ScreenUtil().setSp(14)
- ),
- textAlign: TextAlign.start,
- ),
- Offstage(
- offstage: !widget.isMust,
- child: Text(
- " *",
- style: TextStyle(color: Colors.red),
- ),
- ),
- Expanded(flex: 1, child: Container()),
- widget.value == null || widget.value.isEmpty
- ? Container(
- child: Row(
- children: <Widget>[
- Text(
- widget.placeholder,
- style: TextStyle(
- color: Color(0xffcccccc),
- // fontSize: ScreenUtil().setSp(14)
- ),
- textAlign: TextAlign.start,
- ),
- Container(
- padding: EdgeInsets.only(top: 3),
- child: Icon(
- Icons.keyboard_arrow_right,
- size: 20.0,
- color: Color(0xffcccccc),
- ),
- ),
- SizedBox(width: 10)
- ],
- ),
- )
- : Container(
- padding: EdgeInsets.only(right: ScreenUtil().setWidth(15)),
- child: Row(
- children: <Widget>[
- Text(
- widget.value,
- style: TextStyle(
- color: Color(0xff222222),
- fontSize: ScreenUtil().setSp(14)),
- textAlign: TextAlign.start,
- ),
- ],
- ),
- ),
- ],
- ),
- ),
- );
- }
- }
- class CommonActionBar extends StatelessWidget {
- final isFavorited;
- final Function onTapSharing;
- final Function onTapFavoriting;
- final Function onTapAction;
- final String actionText;
- final Widget actionWidget;
- CommonActionBar(
- {this.isFavorited = false,
- this.actionText = '',
- this.onTapSharing,
- this.onTapFavoriting,
- this.onTapAction,
- this.actionWidget});
- @override
- Widget build(BuildContext context) {
- double width = MediaQuery.of(context).size.width;
- return Container(
- width: width,
- color: Colors.white,
- padding: EdgeInsets.all(10),
- child: Row(
- crossAxisAlignment: CrossAxisAlignment.center,
- children: <Widget>[
- Expanded(
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceAround,
- children: [
- GestureDetector(
- onTap: () {
- if (this.onTapSharing != null) this.onTapSharing();
- },
- child: Container(
- // padding: EdgeInsets.only(left:25,right:30),
- child: Column(children: <Widget>[
- Icon(
- const IconData(0xe693, fontFamily: "Iconfont"),
- size: 20.0,
- color: Color(0xff333333),
- ),
- Text(
- "分享",
- style: TextStyle(
- color: Color(0xff555A64),
- fontSize: 12,
- ),
- textAlign: TextAlign.start,
- ),
- ])),
- ),
- GestureDetector(
- onTap: () {
- if (this.onTapFavoriting != null) this.onTapFavoriting();
- },
- child: Container(
- child: Column(children: <Widget>[
- Icon(
- isFavorited ? Iconfont.shoucang1 : Iconfont.shoucang,
- size: 20.0,
- color: Color(isFavorited ? 0xff5589FF : 0xff555A64),
- ),
- Text(
- isFavorited ? "已收藏" : "收藏",
- style: TextStyle(
- color: Color(isFavorited ? 0xff5589FF : 0xff555A64),
- fontSize: 12,
- ),
- textAlign: TextAlign.start,
- ),
- ])),
- ),
- ],
- ),
- ),
- Container(
- height: 45,
- width: 240,
- decoration: BoxDecoration(
- color: Color(0xff5589FF),
- borderRadius: BorderRadius.circular(30),
- ),
- child: FlatButton(
- // padding: EdgeInsets.all(15.0),
- child: actionWidget != null
- ? actionWidget
- : Text(
- actionText,
- style: TextStyle(
- fontSize: 16,
- ),
- ),
- textColor: Colors.white,
- onPressed: () {
- if (onTapAction != null) onTapAction();
- },
- ),
- ),
- ],
- ),
- );
- }
- }
- class AlphabeticIndexBar extends StatelessWidget {
- final Map<String, double> positionAnchors;
- final ScrollController controller;
- const AlphabeticIndexBar({Key key, this.positionAnchors, this.controller})
- : super(key: key);
- @override
- Widget build(BuildContext context) {
- var alphabetAnchors = positionAnchors.keys
- .map(
- (e) => GestureDetector(
- child: Text(
- e,
- style: TextStyle(color: Color(0xff5589FF), fontSize: 15),
- ),
- onTap: () => controller.animateTo(positionAnchors[e],
- duration: Duration(milliseconds: 500),
- curve: Curves.decelerate),
- ),
- )
- .toList();
- return Column(
- // mainAxisAlignment: MainAxisAlignment.spaceBetween,
- // crossAxisAlignment: CrossA,
- children: [
- ...alphabetAnchors,
- Text(
- '#',
- style: TextStyle(color: Color(0xff5589FF), fontSize: 15),
- )
- ],
- );
- }
- @override
- void debugFillProperties(DiagnosticPropertiesBuilder properties) {
- super.debugFillProperties(properties);
- properties
- .add(DiagnosticsProperty<ScrollController>('controller', controller));
- }
- }
- class CircularLoading extends StatelessWidget {
- @override
- Widget build(BuildContext context) {
- return Container(
- padding: EdgeInsets.only(top: 10, bottom: 10),
- color: ThemeUtils.getTabsBg(context),
- child: Center(
- child: SpinKitFadingCircle(
- color: Colors.blueAccent,
- size: 30.0,
- ),
- ),
- );
- }
- }
|