This repository has been archived by the owner on Jan 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3bb041
commit f381b74
Showing
37 changed files
with
276 additions
and
525 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,3 +57,6 @@ buck-out/ | |
|
||
# CocoaPods | ||
/ios/Pods/ | ||
|
||
# VSCode Extensions | ||
.VSCodeCounter/ |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import { Text, View, } from 'react-native'; | ||
import { connect } from 'react-redux'; | ||
|
||
import { generalCardStyles } from '../../styles'; | ||
|
||
class Card extends React.Component { | ||
|
||
style = (stylesheet, styleName) => stylesheet[styleName + (this.props.settings.darkMode ? "D" : "L")]; | ||
|
||
render() { | ||
return ( | ||
<View style={this.style(generalCardStyles, 'card')}> | ||
|
||
</View> | ||
); | ||
} | ||
} | ||
|
||
const mapStateToProps = state => ({ | ||
settings: state.settings | ||
}); | ||
|
||
export default connect(mapStateToProps)(Card); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import { Text, View, } from 'react-native'; | ||
import { connect } from 'react-redux'; | ||
|
||
import { generalCardStyles } from '../../styles'; | ||
|
||
class Card extends React.Component { | ||
|
||
style = (stylesheet, styleName) => stylesheet[styleName + (this.props.settings.darkMode ? "D" : "L")]; | ||
|
||
render() { | ||
return ( | ||
<View style={this.style(generalCardStyles, 'card')}> | ||
|
||
</View> | ||
); | ||
} | ||
} | ||
|
||
const mapStateToProps = state => ({ | ||
settings: state.settings | ||
}); | ||
|
||
export default connect(mapStateToProps)(Card); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import { Text, View, } from 'react-native'; | ||
import { connect } from 'react-redux'; | ||
|
||
import { generalCardStyles } from '../../styles'; | ||
|
||
class Card extends React.Component { | ||
|
||
style = (stylesheet, styleName) => stylesheet[styleName + (this.props.settings.darkMode ? "D" : "L")]; | ||
|
||
render() { | ||
return ( | ||
<View style={this.style(generalCardStyles, 'card')}> | ||
|
||
</View> | ||
); | ||
} | ||
} | ||
|
||
const mapStateToProps = state => ({ | ||
settings: state.settings | ||
}); | ||
|
||
export default connect(mapStateToProps)(Card); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import React from 'react'; | ||
import { Text, View, } from 'react-native'; | ||
import { connect } from 'react-redux'; | ||
|
||
import { generalCardStyles, styles } from '../../styles'; | ||
|
||
class Card extends React.Component { | ||
|
||
style = (stylesheet, styleName) => stylesheet[styleName + (this.props.settings.darkMode ? "D" : "L")]; | ||
|
||
render() { | ||
return ( | ||
<View style={this.style(generalCardStyles, 'card')}> | ||
<Text style={this.style(styles, 'centerText')}> | ||
{this.props.title} | ||
</Text> | ||
</View> | ||
); | ||
} | ||
} | ||
|
||
const mapStateToProps = state => ({ | ||
settings: state.settings | ||
}); | ||
|
||
export default connect(mapStateToProps)(Card); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import React from 'react'; | ||
import { Text, View, } from 'react-native'; | ||
import { connect } from 'react-redux'; | ||
|
||
import { generalCardStyles } from '../../styles'; | ||
|
||
class Card extends React.Component { | ||
|
||
style = (stylesheet, styleName) => stylesheet[styleName + (this.props.settings.darkMode ? "D" : "L")]; | ||
|
||
render() { | ||
return ( | ||
<View style={this.style(generalCardStyles, 'card')}> | ||
|
||
</View> | ||
); | ||
} | ||
} | ||
|
||
const mapStateToProps = state => ({ | ||
settings: state.settings | ||
}); | ||
|
||
export default connect(mapStateToProps)(Card); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.