导入文件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;
表示文件属于某个库
文件导入顺序(从上到下依次)
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';
作者:村口阿成
来源:简书