https://github.com/deadmanshadow/appdev-practice
https://github.com/deadmanshadow/appdev-practice
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/deadmanshadow/appdev-practice
- Owner: deadmanShadow
- Created: 2023-12-18T11:40:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-19T15:18:30.000Z (over 2 years ago)
- Last Synced: 2025-01-21T20:48:52.631Z (over 1 year ago)
- Language: Dart
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dart Practice
This repository is dedicated to my Dart programming practice. It contains code snippets, exercises, and small projects to improve my Dart programming skills.
## Table of Contents
- [Getting Started](#getting-started)
- [Folder Structure](#folder-structure)
- [Running Dart Code](#running-dart-code)
- [Contributing](#contributing)
## Getting Started
1. Clone this repository to your local machine:
```bash
git clone https://github.com/raihanShamilDev/appDev-practice.git
```
2. Install the required dependencies. Ensure that you have Dart SDK installed on your machine.
3. Explore the code, experiment with Dart, and have fun practicing!
## Folder Structure
The repository has the following structure:
`
├── lib # Dart source code files
│ ├── main.dart # Main Dart application file
│ └── ... # Additional Dart files
├── test # Test files (if applicable)
├── .gitignore # Git ignore file
├── pubspec.yaml # Dart package configuration file
└── README.md # Project README file
`
## Running Dart Code
To run the Dart code, follow these steps:
1. Open a terminal in the project directory.
2. Run the Dart application using the Dart SDK:
```bash
dart lib/main.dart
```
Adjust the file path and name according to your project structure.
## Contributing
If you'd like to contribute or provide feedback, feel free to open an issue or submit a pull request. Your contributions are highly appreciated!