1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00
This commit is contained in:
Zhiyuan Zheng
2021-02-08 23:47:20 +01:00
parent f5414412d4
commit 383ebc2775
79 changed files with 150 additions and 137 deletions

View File

@ -11,7 +11,7 @@ import {
View,
ViewStyle
} from 'react-native'
import { Chase } from 'react-native-animated-spinkit'
import { Flow } from 'react-native-animated-spinkit'
export interface Props {
style?: StyleProp<ViewStyle>
@ -62,7 +62,7 @@ const Button: React.FC<Props> = ({
const loadingSpinkit = useMemo(
() => (
<View style={{ position: 'absolute' }}>
<Chase size={StyleConstants.Font.Size[size]} color={theme.secondary} />
<Flow size={StyleConstants.Font.Size[size]} color={theme.secondary} />
</View>
),
[mode]