一、import含义
import 'dart:xxx';
引入Dart标准库import 'xxx/xxx.dart';
引入相对路径的Dart文件import 'package:xxx/xxx.dart';
引入Pub仓库pub.dev(或者pub.flutter-io.cn)中的第三方库import 'package:project/xxx/xxx.dart';
引入自定义的dart文件import 'xxx' show compute1, compute2
只导入compute1,compute2import 'xxx' hide compute3
除了compute都导入import 'xxx' as compute4
将库重命名,当有名字冲突时library compute5;
定义库名称part of compute6;
表示文件属于某个库
二、常用规范
1. 引入文件顺序
文件导入顺序(从上到下依次)
dart sdk内的库
flutter内的库
第三方库
自己的库(文件)
相对路径引用
e.g.
import 'dart:io';
import 'package:material/material.dart';
import 'package:dio/dio.dart';
import 'package:project/common/uitls.dart';
import 'xxx/xxx/xxx/xxx.dart';
2. 命名规范:
文件夹:小写下划线 lowercase_with_underscores
文件:小写下划线 lowercase_with_underscores
类名:大写开头的驼峰命名法 UpperCamelCase
变量名:小写开头的驼峰命名法 lowerCamelCase
常量:小写开头的驼峰命名法 lowerCamelCase
首字母缩写词长度不超过两个字母的,首字母大写,比如 HttpRequest
长度两个字母的首字母缩写词可完全大写,,比如 IOStream
,DBUtils
但单个单词缩写仍然仅首字母大写,比如 Id
文章来源:https://www.toymoban.com/news/detail-517378.html
备注:命名规范更多详细内容参照Dart官方文档文章来源地址https://www.toymoban.com/news/detail-517378.html
到了这里,关于Flutter 引入包import的各种含义,及常用命名规范的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!