上一页 1 2 3 4 5 6 7 ··· 23 下一页
摘要: android 1.在 android/app/app/src/main/AndroidManifest.xml 中添加读取文件的权限 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 2. 下载方 阅读全文
posted @ 2020-10-13 17:21 浅唱年华1920 阅读(2734) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/9bec3d14df7f 大致用法如下 import 'package:flutter/material.dart'; class Login extends StatefulWidget { @override _LoginState creat 阅读全文
posted @ 2020-08-04 17:14 浅唱年华1920 阅读(640) 评论(0) 推荐(0) 编辑
摘要: body:{ child: GestureDetector( behavior: HitTestBehavior.translucent, onTap: () { // 触摸收起键盘 FocusScope.of(context).requestFocus(FocusNode());; } child 阅读全文
posted @ 2020-08-04 16:59 浅唱年华1920 阅读(1845) 评论(0) 推荐(0) 编辑
摘要: 在RN 运行时,出现问题 react-native run-ios Could not find iPhone 6 simulator 和 Entry, ":CFBundleIdentifier", Does Not Exist 在解决这个问题时, ./configure 编译不了 报错, conf 阅读全文
posted @ 2020-07-13 16:56 浅唱年华1920 阅读(3124) 评论(0) 推荐(0) 编辑
摘要: 来源:https://www.jianshu.com/p/fe03ff7e4e8e 遇到问题 记录下 报错信息 [Client] Sending selectors failed with: Error Domain=NSCocoaErrorDomain Code=4099 "The connect 阅读全文
posted @ 2020-07-13 16:52 浅唱年华1920 阅读(4293) 评论(0) 推荐(0) 编辑
摘要: 报错信息 Unknown argument type '__attribute__' in method -[RCTLinkingManager getInitialURL:reject:]. Extend RCTConvert to support this type. 1.在Xcode中打开:X 阅读全文
posted @ 2020-07-13 16:49 浅唱年华1920 阅读(425) 评论(0) 推荐(0) 编辑
摘要: 使用自带库 import 'dart:convert'; 1.加密 base64Encode(utf8.encode(str)) 2. 解密 utf8.decode(base64Decode(str)) 阅读全文
posted @ 2020-07-09 10:32 浅唱年华1920 阅读(2310) 评论(0) 推荐(0) 编辑
摘要: 1. child使用Row 2. 给container设置alignment属性 阅读全文
posted @ 2020-07-09 10:28 浅唱年华1920 阅读(5809) 评论(0) 推荐(0) 编辑
摘要: 1. Theme 修改主题颜色可以修改 TextField 选中时整体颜色(边框+prefixIcon) Theme( data: new ThemeData(primaryColor: Colors.red), child: TextField( controller: accountContro 阅读全文
posted @ 2020-06-16 15:46 浅唱年华1920 阅读(2337) 评论(0) 推荐(0) 编辑
摘要: flutter全屏背景图(包括appbar和状态栏)以及沉浸状态栏的设置 上面这个主要思路: 用一个 Container 组件 设置一张背景图, 包裹 Scaffold 组件, 在 Scaffold 组件中设置 背景色 和 appbar 背景色 都为透明,然后设置 appbar 没有阴影 即: el 阅读全文
posted @ 2020-06-16 15:17 浅唱年华1920 阅读(4244) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 23 下一页