ICode9

精准搜索请尝试: 精确搜索
  • 【Flutter 专题】116 图解 PhysicalModel & PhysicalShape 裁切小组件2021-12-10 19:33:05

    return ClipRRect( borderRadius: BorderRadius.all(Radius.circular(20.0)), child: Container(width: 80.0, height: 80.0, child: Image.asset(‘images/icon_hzw01.jpg’))); return Container( width: 80.0, height: 80.0, child: ClipOval(child: Image.asset(‘images

  • Python 之 文件读写的学习2020-06-01 23:57:08

      文件是一个存储在辅助存储器上的数据序列,可以包含任何数据内容,其中包括两种类型:文本文件和二进制文件。文件读写是Python代码调用电脑文件的主要功能,能被用于读取和写入文本记录、音频片段、Excel文档、保存邮件以及任何保存在电脑上的东西。   文件读写 一、文件的打开(Pytho

  • Google Chrome 80.0.3987.149 官方正式版2020-03-18 21:03:50

    谷歌浏览器Google Chrome 80正式版例行更新,详细版本80.0.3987.149。Google Chrome浏览器,又称谷歌浏览器,采用Chromium内核,全球最受欢迎的免费网页浏览器,追求速度、隐私安全的网络浏览器。 新版变化 https://blog.google/products/chrome 2020-02-05 Chrome 80- 调整第三方Cookie策

  • Text ------widget树由两个widget:Center(及其子widget)和Text组成2019-04-25 17:49:36

    import 'package:flutter/material.dart';void main() => runApp(new Center( child: new Text( 'Hello, world!', textDirection: TextDirection.ltr, textAlign: TextAlign.center, maxLines: 1, overflow: TextOve

  • python程序—系统检测2019-04-23 18:54:44

    持续监控系统内存,CPU,硬盘的使用情况,到达阈值时报警 import psutilimport time#内存def meomory_check(): meom= psutil.virtual_memory() if meom[2] >=80.0: print('内存已经到达报警阈值!')#cpudef cpu_check(): cpu = psutil.cpu_percent(1) if cpu >=80.0:

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有