• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

akvo / nmis-mobile / 5313109479

19 Jun 2023 02:28PM UTC coverage: 17.978% (-40.8%) from 58.824%
5313109479

Pull #11

github

web-flow
Merge a99a39dd9 into 9b0e54f3d
Pull Request #11: Feature/10 base layouts

0 of 28 branches covered (0.0%)

Branch coverage included in aggregate %.

50 of 50 new or added lines in 10 files covered. (100.0%)

16 of 61 relevant lines covered (26.23%)

71.9 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

16.67
/app/src/components/Stack/index.js
1
import React from 'react';
2
import { View } from 'react-native';
3
import { styles } from './styles';
4

5
const Stack = ({ children, row = false, reverse = false, background = '#f9fafb' }) => {
1!
6
  const flexDir = `{row ? 'row' : 'column'}{reverse ? '-reverse' : ''}`;
×
7
  return (
×
8
    <View
9
      style={{
10
        ...styles.container,
11
        flexDirection: flexDir,
12
        backgroundColor: background,
13
      }}
14
    >
15
      {children}
16
    </View>
17
  );
18
};
19

20
export default Stack;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc