JaveriaJR/whatsapp_story_editor
WhatsApp に似たストーリー編集機能を追加するための Flutter パッケージ。
- Stars
- 6
- Forks
- 14
- 最終プッシュ(UTC)
- 2024/03/01
- プロジェクト状態
- 公開中
使用している依存関係
依存関係一覧 14 件
- flutter
{"sdk":"flutter"} - whatsapp_camera
^1.0.0 - photofilters
^3.0.1 - perfect_freehand
^1.0.4 - image_crop_plus_updated
^0.7.1 - hsv_color_pickers
^0.2.2 - get
^4.6.1 - path_provider
^2.0.12 - flutter_svg
^2.0.4 - dotted_border
^2.0.0+2 - image_cropper
^4.0.1 - image_picker
^0.8.7+5 - flutter_test開発用
{"sdk":"flutter"} - flutter_lints開発用
^2.0.0
元の README
以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
README を開く / 閉じる
Flutter package to add story editing features similar to Whatsapp. Make Stories like whatsapp and add texts, stickers, painting on your photo along with basic features like crop, rotation, and also add captions to it.
How to Use
To use whatsapp_story_editor, follow the following steps:
Step1: Adding plugin dependency
add the plugin to your pubspec.yaml file:
whatsapp_story_editor: [latest_version]
Step2: Importing the package.
import the plugin in [your_file].dart
import 'package:whatsapp_story_editor/whatsapp_story_editor.dart';
Step3: Navigate to Whatsapp Story Editor Page
Navigate to WhatsappStortEditor Page on button click, you can find a whatsapp Camera button in the example file for reference. It will land you to the camera page which allows you to capture or select the photo from gallery upon your conscent.
Navigator.push(
context,
MaterialPageRoute(builder: (context) => const WhatsappStoryEditor()),
);
this returns an Object containing the edited photo and caption as Future as:
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const WhatsappStoryEditor()),
).then((whatsappStoryEditorResult) {
if (whatsappStoryEditorResult != null) {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => SavedImageView(
image: whatsappStoryEditorResult.image,
caption: whatsappStoryEditorResult.caption,
)),
);
}
});
);
Note that the whatsappStoryEditorResult could be null if the user dosnt makes any edit on the photo and leaves. SavedImageView is the page where you could show the edited photo and caption. You may change as you need it to be.
Example
Please refer to the example file for detailed usage and example here
Example Images:
https://imgur.com/wNx4dfd.png https://imgur.com/tZRqrAm.png https://imgur.com/cTdIMd6.png https://imgur.com/3cynFSd.png https://imgur.com/yHXWekp.png https://imgur.com/lgExybA.png https://imgur.com/nJj8bdU.png https://imgur.com/g1cshOZ.png https://imgur.com/iGUJrJO.png https://imgur.com/9RhJZZO.png https://imgur.com/VsaTpIF.png https://imgur.com/PHTO5IB.png https://imgur.com/i6RBM88.png https://imgur.com/u660duD.png
Created by Javeria Iffat
Future Work
For now, only one image editing capability is being handled by Whatsapp Story Editor in this version.
FAQ
In case you need: to add new feature or you get any error or any help, please contact me at javeriaiffat312@gmail.com or javeria.iffat@lums.edu.pk please be kind if you get any errors, text me I'll be more than happy to help you all.
THANK YOU!