1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Dart でコードを分割した時にimportする書き方

Posted at

DartまたはFlutterを使っていてコードを分割した時、他のファイルを参照するimportの書き方。

次のディレクトリ構成を想定します。

project/
+ lib/main.dart
+ lib/sub.dart

main.dartに記載することを想定して、

import 'package:project/sub.dart';

または

import 'Project/sub.dart';

と書きます。

packageで指定するのは pubspec.yaml

name: project

と記載してある必要があります。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?