/wally

Primary LanguageC++

Banner

Wally

About The Project

Wally brings an exclusive wallpapers & setups straight to your Android device. With unlimited downloads, you can be sure to never miss the best wallpapers.

Tech Stack

  • Flutter
  • Pixels API

Getting Started

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.

Screenshots

Roadmap

See the open issues for a list of proposed features (and known issues). Feel free to raise new issues.

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch ( git checkout -b feature/AmazingFeature )
  3. Add your Changes ( git add . )
  4. Commit your Changes ( git commit -m 'Add some AmazingFeature' )
  5. Push to the Branch ( git push origin feature/AmazingFeature )
  6. Open a Pull Request

Contributors