Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@appsimples/atlantica-react-native
Advanced tools
npm login
and you are good to goTo add this lib to your project, simply run yarn add @appsimples/atlantica-react-native
A theme is an object of the type ATLTheme. It can be added in a file as such:
export const theme = {
// Colors
ColorPrimary: '#0073E1',
ColorLightNeutral: '#9E9E9E',
ColorDarkNeutral: '#464646',
...
}
In your App.tsx
file, wrap your screen with the theme provider, providing the previously created theme.
import React, { Component } from 'react'
import { RootNavigation } from './src/navigation/RootNavigation'
import { ATLThemeProvider } from '@appsimples/atlantica-react-native'
import { theme } from './src/theme/Themes'
import { ATLTheme } from '../build/src/theme/ThemeProvider'
export default class App extends Component<> {
render() {
return (
// ATLThemeProvider is needed here order to have the same theme throughout the whole app
<ATLThemeProvider theme={theme as ATLTheme}>
<RootNavigation />
</ATLThemeProvider>
)
}
}
That's all the necessary setup! Now you can finally use a component.
Now you simply have to import it into your screen and use it.
import { ATLButton } from '@appsimples/atlantica-react-native'
...
return (
<ATLButton
title={'MyButton'}
onPress={onPressMyButton}
/>
)
For more information on the usage of each component, visit our API documentation here.
Your components receive its values from the theme we created on step 2 of this guide. However, if you want a particular instance of it to look different, it can be done by overriding its initial props and replacing it with the desired values. In the example that follows, we want this specific instance of the button to have a fontSize of 30.
import { ATLButton } from '@appsimples/atlantica-react-native'
...
return (
<ATLButton
title={'MyButton'}
onPress={onPressMyButton}
buttonBaseProps={{
fontSize: 30
}}
/>
)
FAQs
#### Permission
We found that @appsimples/atlantica-react-native demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.