Skip to content

Instantly share code, notes, and snippets.

View kingkongqn4444's full-sized avatar
🎯
Focusing

ThinhNH kingkongqn4444

🎯
Focusing
  • Việt Nam
  • Hồ Chí Minh
View GitHub Profile
@sturmenta
sturmenta / feedback.tsx
Last active August 29, 2023 18:20
react native collapse animation dynamic height
import React, {useEffect, useImperativeHandle, useState} from 'react';
import {Keyboard, View} from 'react-native';
import {useTheme} from '@react-navigation/native';
import {useSpring, animated} from '@react-spring/native';
import {MyThemeInterfaceColors} from '_styles';
import {GetDimensions} from '_atoms';
import {MultilineTextInput, Button, TextInputRef} from '_molecules';
import {getPercentageInHex, themedStyleSheet} from '_utils';
import {usePrevious} from '_hooks';