gitextract_lzwitwv2/ ├── .circleci/ │ └── config.yml ├── .gitignore ├── LICENSE ├── boilerplate/ │ ├── .babelrc │ ├── .editorconfig │ ├── App/ │ │ ├── Components/ │ │ │ ├── AlertMessage.js │ │ │ ├── AlertMessage.story.js │ │ │ ├── DrawerButton.js │ │ │ ├── DrawerButton.story.js │ │ │ ├── FullButton.js │ │ │ ├── FullButton.story.js │ │ │ ├── README.md │ │ │ ├── RoundedButton.js │ │ │ ├── RoundedButton.story.js │ │ │ ├── Stories.js │ │ │ └── Styles/ │ │ │ ├── AlertMessageStyles.js │ │ │ ├── DrawerButtonStyles.js │ │ │ ├── FullButtonStyles.js │ │ │ ├── README.md │ │ │ └── RoundedButtonStyles.js │ │ ├── Config/ │ │ │ ├── AppConfig.js │ │ │ ├── DebugConfig.js │ │ │ ├── README.md │ │ │ ├── ReactotronConfig.js │ │ │ └── index.js │ │ ├── Containers/ │ │ │ ├── App.js │ │ │ ├── LaunchScreen.js │ │ │ ├── README.md │ │ │ ├── RootContainer.js │ │ │ └── Styles/ │ │ │ ├── LaunchScreenStyles.js │ │ │ ├── README.md │ │ │ └── RootContainerStyles.js │ │ ├── Fixtures/ │ │ │ ├── README.md │ │ │ ├── gantman.json │ │ │ ├── rateLimit.json │ │ │ ├── root.json │ │ │ └── skellock.json │ │ ├── Images/ │ │ │ └── README.md │ │ ├── Lib/ │ │ │ └── README.md │ │ ├── Navigation/ │ │ │ ├── AppNavigation.js │ │ │ ├── ReduxNavigation.js │ │ │ └── Styles/ │ │ │ └── NavigationStyles.js │ │ ├── Redux/ │ │ │ ├── CreateStore.js │ │ │ ├── GithubRedux.js │ │ │ ├── NavigationRedux.js │ │ │ ├── ScreenTrackingMiddleware.js │ │ │ ├── SearchRedux.js │ │ │ ├── StartupRedux.js │ │ │ └── index.js │ │ ├── Sagas/ │ │ │ ├── GithubSagas.js │ │ │ ├── StartupSagas.js │ │ │ └── index.js │ │ ├── Services/ │ │ │ ├── Api.js │ │ │ ├── ExamplesRegistry.js │ │ │ └── FixtureApi.js │ │ ├── Themes/ │ │ │ ├── ApplicationStyles.js │ │ │ ├── Colors.js │ │ │ ├── Fonts.js │ │ │ ├── Images.js │ │ │ ├── Metrics.js │ │ │ ├── README.md │ │ │ └── index.js │ │ └── Transforms/ │ │ ├── ConvertFromKelvin.js │ │ └── README.md │ ├── README.md │ ├── Tests/ │ │ ├── Components/ │ │ │ ├── AlertMessageTest.js │ │ │ ├── DrawerButtonTest.js │ │ │ ├── FullButtonTest.js │ │ │ └── RoundedButtonTest.js │ │ ├── Redux/ │ │ │ └── GithubReduxTest.js │ │ ├── Sagas/ │ │ │ ├── GithubSagaTest.js │ │ │ └── StartupSagaTest.js │ │ ├── Services/ │ │ │ └── FixtureAPITest.js │ │ ├── Setup.js.ejs │ │ └── StoriesTest.js │ ├── ignite.json.ejs │ ├── index.js.ejs │ ├── package.json.ejs │ └── storybook/ │ ├── addons.js │ ├── index.js │ └── storybook.ejs ├── boilerplate.js ├── commands/ │ └── generate/ │ ├── component.js │ ├── container.js │ ├── generate.js │ ├── list.js │ ├── redux.js │ ├── saga.js │ └── screen.js ├── ignite.json ├── lib/ │ ├── patterns.js │ └── react-native-version.js ├── options.js ├── package.json ├── plugin.js ├── readme.md ├── screenExamples.js ├── templates/ │ ├── component-style.ejs │ ├── component-test.ejs │ ├── component.ejs │ ├── container-style.ejs │ ├── container.ejs │ ├── examples/ │ │ ├── GridExample.js.ejs │ │ ├── RowExample.js.ejs │ │ ├── SectionExample.js.ejs │ │ └── Styles/ │ │ ├── GridExampleStyle.js.ejs │ │ ├── RowExampleStyle.js.ejs │ │ └── SectionExampleStyle.js.ejs │ ├── flatlist-grid-style.ejs │ ├── flatlist-grid.ejs │ ├── flatlist-sections.ejs │ ├── flatlist.ejs │ ├── listview-grid-style.ejs │ ├── listview-sections.ejs │ ├── listview-style.ejs │ ├── listview.ejs │ ├── redux-test-ava.ejs │ ├── redux-test-jest.ejs │ ├── redux.ejs │ ├── saga-test-ava.ejs │ ├── saga-test-jest.ejs │ ├── saga.ejs │ ├── screen-style.ejs │ └── screen.ejs └── test/ ├── generators-integration.test.js ├── interface.test.js └── react-native-version.test.js