├── .expo-shared └── assets.json ├── .gitignore ├── App.tsx ├── Document ├── index.tsx └── styles.tsx ├── Header ├── index.tsx ├── styles.tsx └── types.ts ├── README.md ├── ScrollContext ├── index.tsx └── types.ts ├── Text ├── index.tsx └── types.ts ├── app.json ├── assets ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── tsconfig.json ├── types.ts └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/App.tsx -------------------------------------------------------------------------------- /Document/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/Document/index.tsx -------------------------------------------------------------------------------- /Document/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/Document/styles.tsx -------------------------------------------------------------------------------- /Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/Header/index.tsx -------------------------------------------------------------------------------- /Header/styles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/Header/styles.tsx -------------------------------------------------------------------------------- /Header/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/Header/types.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React Native Scroll Aware Header Transitions 2 | -------------------------------------------------------------------------------- /ScrollContext/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/ScrollContext/index.tsx -------------------------------------------------------------------------------- /ScrollContext/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/ScrollContext/types.ts -------------------------------------------------------------------------------- /Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/Text/index.tsx -------------------------------------------------------------------------------- /Text/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/Text/types.ts -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/app.json -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/types.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rossbulat/rn-dynamic-header/HEAD/yarn.lock --------------------------------------------------------------------------------