├── .gitignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── components ├── BackToToc.js ├── Description.js ├── Footer.js └── md │ └── Example.js ├── next.config.js ├── package.json ├── pages ├── _document.js └── index.js ├── recipes ├── .prettierrc ├── arrays.md ├── async-await.md ├── check-if-dev.md ├── combining-props-and-state.md ├── debounce.md ├── fetch.md ├── gesture-detector.md ├── healthcheck.md ├── hello-world.md ├── hide-statusbar.md ├── index.md ├── init.md ├── ink-well.md ├── json.md ├── lifecycle-hooks.md ├── loading-indicator-while-smth-is-loading.md ├── lock-orientation.md ├── navigation.md ├── platform-specific-code.md ├── required-and-default-props.md ├── show-alert.md ├── singleton.md ├── stateful-widget.md └── stateless-widget.md ├── scripts └── add-example.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/README.md -------------------------------------------------------------------------------- /components/BackToToc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/components/BackToToc.js -------------------------------------------------------------------------------- /components/Description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/components/Description.js -------------------------------------------------------------------------------- /components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/components/Footer.js -------------------------------------------------------------------------------- /components/md/Example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/components/md/Example.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/package.json -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/pages/index.js -------------------------------------------------------------------------------- /recipes/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/.prettierrc -------------------------------------------------------------------------------- /recipes/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/arrays.md -------------------------------------------------------------------------------- /recipes/async-await.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/async-await.md -------------------------------------------------------------------------------- /recipes/check-if-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/check-if-dev.md -------------------------------------------------------------------------------- /recipes/combining-props-and-state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/combining-props-and-state.md -------------------------------------------------------------------------------- /recipes/debounce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/debounce.md -------------------------------------------------------------------------------- /recipes/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/fetch.md -------------------------------------------------------------------------------- /recipes/gesture-detector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/gesture-detector.md -------------------------------------------------------------------------------- /recipes/healthcheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/healthcheck.md -------------------------------------------------------------------------------- /recipes/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/hello-world.md -------------------------------------------------------------------------------- /recipes/hide-statusbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/hide-statusbar.md -------------------------------------------------------------------------------- /recipes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/index.md -------------------------------------------------------------------------------- /recipes/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/init.md -------------------------------------------------------------------------------- /recipes/ink-well.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/ink-well.md -------------------------------------------------------------------------------- /recipes/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/json.md -------------------------------------------------------------------------------- /recipes/lifecycle-hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/lifecycle-hooks.md -------------------------------------------------------------------------------- /recipes/loading-indicator-while-smth-is-loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/loading-indicator-while-smth-is-loading.md -------------------------------------------------------------------------------- /recipes/lock-orientation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/lock-orientation.md -------------------------------------------------------------------------------- /recipes/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/navigation.md -------------------------------------------------------------------------------- /recipes/platform-specific-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/platform-specific-code.md -------------------------------------------------------------------------------- /recipes/required-and-default-props.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/required-and-default-props.md -------------------------------------------------------------------------------- /recipes/show-alert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/show-alert.md -------------------------------------------------------------------------------- /recipes/singleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/singleton.md -------------------------------------------------------------------------------- /recipes/stateful-widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/stateful-widget.md -------------------------------------------------------------------------------- /recipes/stateless-widget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/recipes/stateless-widget.md -------------------------------------------------------------------------------- /scripts/add-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/scripts/add-example.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesnitsky/howtodothisinflutter/HEAD/yarn.lock --------------------------------------------------------------------------------