Login Area View

For using just the background and look & feel of the Animated Login View without the need of playing the animation.

Preview

Code sample

import React from 'react';
import { LoginAreaView } from '@dormakaba/digital-reactnative-visual';

export default function LoginArea = () => {
  return (
    <LoginAreaView
      logo={<Image source={require('../../../assets/img/appicon.png')} style={{ width: 76, height: 76, marginTop: 20 }} />}
      footer={(
        <View style={{ flexDirection: 'row', justifyContent: 'space-between' }}>
          <Text>APP Version: 1.0.0</Text>
          <Text>API Version: 1.2.1</Text>
        </View>
      )}
      containerStyle={{ backgroundColor: Platform.select({ ios: '#fcfcfc', android: colors.backgroundGray }) }}
    >
    {/* your content */}
    </LoginAreaView>
  );
}

Last updated