WALLY
Wally is a flutter app for mobile wallpapers.
Steps to Run/Build the Project
Flutter must be installed to run the project.
- Clone the repository
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
.
Demo
Comments are closed.