Installation
Add whatsapp_status_editor:
to your pubspec.yaml dependencies then run flutter pub get
dependencies:
whatsapp_status_editor:
Import
Add this line to import the package.
import 'package:whatsapp_status_editor/whatsapp_status_editor.dart';
How to use
await Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const StatusEditor(),
),
).then((res) async {
print(res);
if (res != null) {
print(res);
filePath = res;
setState(() {});
}
});
Preview

Support me
Libraries
- story_editor/components/background_gradient_selector_widget
- story_editor/components/font_family_select_widget
- story_editor/components/overlay_item_widget
- story_editor/components/remove_widget
- story_editor/components/size_slider_widget
- story_editor/components/text_color_select_widget
- story_editor/components/text_field_widget
- story_editor/components/top_tools_widget
- story_editor/constants/font_colors
- story_editor/constants/font_styles
- story_editor/constants/gradients
- story_editor/constants/item_type
- story_editor/extensions/context_extension
- story_editor/models/editable_items
- story_editor/utils/gradient_util
- whatsapp_status_editor