wishfly

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

wishfly

Wishfly #



Put your users to driver's seat. Wishfly allows you to know what functions should your app have. #

Features #

User can create feature request with title and description.
In Admin you can change status of each feature request.
All new feature requests must be approved by you before popping up in user list.

Getting started #

🤘 It takes less than 180 seconds to integrate Wishfly into your app.



Go to the Wishfly Admin and create account. Click on plus button to create a new project and enter your app's name.


Add dependency to your pubspec.yaml file


$ flutter pub add wishfly: ^<latest version>
copied to clipboard
or
dependencies:
flutter:
sdk: flutter
...
wishfly: ^<latest version>
copied to clipboard
Don't forget to flutter pub get.

Import package in your dart file

import 'package:wishfly/wishfly.dart';
copied to clipboard

You can place Widget in you widget tree. It could be a screen, modal or whatever you want. You can see example below.

import 'package:wishfly/wishfly.dart';

class MyApp extends StatelessWidget {

@override
Widget build(BuildContext context) {
return Wishfly(
apiKey: "your-api-key-here", // your API key
projectId: 0, // your project ID
);
}
}
copied to clipboard

Additional information #
Even though you can customize almost every color, Wishfly doesn't have to perfectly fit your needs. No problem. There is API client so you can perfectly match it with your design system.
Localization #
Default language is English.
For supporting other languages, you can add corresponding keys to your own localization file and pass it to Wishfly widget. You can see localization keys here.
To get localization done, add WishflyLocalizations.delegate to your MaterialApp widget.
class MyApp extends StatelessWidget {
const MyApp({super.key});

@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Wishfly Demo',
supportedLocales: const [Locale('en')],
localizationsDelegates: const [
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
WishflyLocalizations.delegate, // Add this line
],
home: ...,
);
}
}
copied to clipboard
Theme #
You can customize colors in UI. Here you can see what you can customize:
class WishflyThemeData {
final Color? voteIconColor;
final Color? addWishButtonColor;
final Color? titleTextColor;
final Color? tileBackgroundColor;
final Color? descriptionTextColor;
final Color? shadowColor;
final Color? voteCountTextColor;
final Color? primaryBackgroundColor;
final Color? itemTileColor;
final Color? progressBarBackgroundColor;

//...
}
copied to clipboard
In order to support dark or light mode, use WishflyThemeData.light() or WishflyThemeData.dark() factory method.
Example usage could be:
child: Wishfly(
apiKey: "your-api-key-here", // Paste your API key here
projectId: 0, // Paste your project ID here
theme: WishflyThemeData.light(
voteIconColor: Colors.black,
addWishButtonColor: Colors.black,
// more..
),
),
copied to clipboard
You can see complete example here

Note: ⚠️ Wishfly is currently in beta and under development. The SDK API might change in future. #

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.