FLUTTER ECOSYSTEM

tjcampanella/story_creator

story_designer는 인스타그램과 유사한 스토리 편집기를 구현하고자 하는 개발자를 돕기 위해 만들어졌습니다.

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