Advertisement
FadhilUrl

BAF PRADANA Step Indicator

Oct 18th, 2021
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. import React, { Component } from 'react';
  2. import PropTypes from 'prop-types';
  3. import {
  4. Text,
  5. BackHandler,
  6. StatusBar,
  7. Platform,
  8. RefreshControl,
  9. Alert,
  10. Linking,
  11. NativeModules,
  12. ScrollView,
  13. } from 'react-native';
  14. import { Container, View, Icon, Content } from 'native-base';
  15. import Indicator from '../../components/multiPlatform/atom/indicator';
  16. import {SylesIndicatorPradana} from '../../components/multiPlatform/atom/indicator/constant';
  17.  
  18.  
  19. class Pradana extends Component {
  20. render() {
  21. return (
  22. <Container>
  23. <Content>
  24. <Indicator
  25. labels={[
  26. 'Informasi\nProfil',
  27. 'Informasi\nAlamat',
  28. 'Informasi\nDomisili',
  29. 'Informasi\nPekerjaan',
  30. 'Emergency\nKontak',
  31. 'Data\nBarang',
  32. ]}
  33. customStyles={SylesIndicatorPradana}
  34. currentPosition={4}
  35. stepCount={6}
  36. />
  37. </Content>
  38. </Container>
  39. );
  40. }
  41. }
  42.  
  43. export default Pradana;
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement