whatsapp_status_editor 0.0.1
whatsapp_status_editor: ^0.0.1 copied to clipboard
This package is created in the style of the WhatsApp text editor,
Installation #
Add whatsapp_story_editor: to your pubspec.yaml dependencies then run flutter pub get
dependencies:
whatsapp_story_editor:
Import #
Add this line to import the package.
import 'package:whatsapp_story_editor/whatsapp_story_editor.dart';
How to use #
await Navigator.push(
context,
MaterialPageRoute(
builder: (context) => const StoryTextEditor(),
),).then((res) async {
print(res);
if (res != null) {
print(res);
filePath = res;
setState(() {});
}
});
