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,
	),
  ),
);