链接:https://www.cnblogs.com/xianfeng-zhang/p/8134269.html 1,activity代码: package com.example.fitness_app.web.teacher; import android.support.v7.app.AppC ...
分类:
移动开发 时间:
2020-03-10 21:47:28
阅读次数:
89
SizedBox const SizedBox({ Key key, this.width, //宽 this.height, //高 Widget child //子组件}) SizedBox( width: 200.0, height: 200.0, child: new Container( ...
分类:
数据库 时间:
2020-03-10 15:46:52
阅读次数:
96
一个根据索引值来决定某个child显示的widget IndexedStack( index: _indexStack, alignment: Alignment.center, children: <Widget>[ Text('1'), Text('2'), Text('3'), ], ), ...
分类:
其他好文 时间:
2020-03-10 11:54:45
阅读次数:
62
注意:无特殊说明,Flutter版本及Dart版本如下:Flutter版本:1.12.13+hotfix.5Dart版本:2.7.0StackStack组件可以将子组件叠加显示,根据子组件的顺利依次向上叠加,用法如下:Stack(children:<Widget>[Container(height:200,width:200,color:Colors.red,),Container(h
分类:
其他好文 时间:
2020-03-07 10:04:35
阅读次数:
60
注意:无特殊说明,Flutter版本及Dart版本如下: Flutter版本: 1.12.13+hotfix.5 Dart版本: 2.7.0 DataTable DataTable控件显示表格数据,DataTable需要设置行和列,用法如下: 参数是DataTable的列, 参数是DataTable ...
分类:
其他好文 时间:
2020-03-04 21:18:17
阅读次数:
66
详细参考链接:点击 数据结构models.py from django.db import models # Create your models here. class Book(models.Model): title = models.CharField(max_length=32) pric ...
分类:
其他好文 时间:
2020-03-04 00:33:27
阅读次数:
106
问题:qt qmake报错::-1: error: File Makefile.Debug doesn't exist.原因:.pro中使用子目录使用工程时,TEMPLATE = subdirs,写成了SUBDIRS,导致以上错误;所以要根据提示去查找错误,必要时去查看makefile文件,发现确实 ...
分类:
其他好文 时间:
2020-03-03 17:51:00
阅读次数:
96
模态对话框就是在没有关闭它之前,不能再与同一个应用程序的其他窗口进行交互,比如新建项目时弹出的对话框。 #include "dialog.h" #include "ui_dialog.h" Dialog::Dialog(QWidget *parent) : QDialog(parent), ui(n ...
分类:
其他好文 时间:
2020-03-03 10:55:18
阅读次数:
77
我们已经了解MD5是什么了。 我们可以运用MD5查找重复文件。 QByteArray Widget::getfileMD5(const QString &fileName) { QFile file(fileName); if(file.open(QIODevice::ReadOnly)) { QC ...
分类:
其他好文 时间:
2020-03-01 23:23:02
阅读次数:
144
智慧城管综合信息平台是综合运用现代数字信息技术,以数字地图和单元网格划分为基础,集成基础地理、地理编码、市政及社区服务部件事件的多种数据资源,以城市监管员和市民服务热线为信息收集渠道,创建城市管理和市民服务综合指挥系统。通过多部门信息共享、协同工作,构建起沟通快捷、责任到位、处置及时、运转高效的城市 ...
分类:
Web程序 时间:
2020-03-01 19:36:31
阅读次数:
135