FLUTTER ECOSYSTEM

tjcampanella/story_creator

story_designer 是为那些希望实现类似 Instagram 的故事编辑器的开发者而创建的。

story_creator 项目封面
Stars
2
Forks
2
最近推送(UTC)
2022年6月11日
项目状态
未归档
tjcampanella GitHub avatar
GITHUB User

tjcampanella ↗

语言DartRubySwiftKotlinObjective-C

此仓库发布的插件

使用的依赖

依赖清单 6 项

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

story_creator

A package for creating instagram like story, you can use this package to edit images and make it story ready by adding other contents over it like text.

Alt Text

Getting Started

Add this to your package's pubspec.yaml file:

dependencies:
  story_creator: ^1.0.0

Use it like this

File editedFile = await Navigator.of(context).push(
	MaterialPageRoute(builder: (context)=> StoryCreator(
    	filePath: file.path,
	),
  ),
);