Wally brings an exclusive wallpapers & setups straight to your Android device. With unlimited downloads, you can be sure to never miss the best wallpapers.
- Flutter
- Pixels API
Flutter must be installed to run the project.
- Clone the repository
https://github.com/shibam-naskar/wally.git
- Cd into the project directory.
- Run
flutter pub get
- create a pixels api key For Free Create Api Key
- paste the api key inside
lib/pages/home.dart
void getPhotos(searchQuery) async {
var head = {
"Authorization":
"YOUR PIXELS API KEY"
};
var response = await http.get(url, headers: head);
var data = jsonDecode(response.body);
print(data);
}
- To run the debug apk connect a physical device or emulator and run
flutter run
. - To build the release apk run
flutter build apk
.
See the open issues for a list of proposed features (and known issues). Feel free to raise new issues.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Add your Changes (
git add .
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request