# Adding the Plugin ## Project Creation Run the following command to create a new project: ```sh flutter create [project_name] ``` ## Adding Files Add the **a3xd_plugin** folder to your project. ## Editing pubspec.yaml Modify **pubspec.yaml** as shown: ```yaml a3xd_plugin: path: a3xd_plugin ``` ## Installing the Package Run the following command to install the package: ```sh flutter pub get ``` ## Using the Plugin You need to import the header file into the project where you intend to use the plugin. ```dart import 'package:a3xd_plugin/a3xd_plugin.dart'; ```