Button: unsupported configuration.
See original GitHub issue🐛 Bug Report
Can not use the prop to style the button. I’m getting the warning like below
Button: unsupported configuration. Check one of the following prop values { "appearance": "default", "variants": [ "success", "tiny" ], "states": [] } 📖 Documentation: https://akveo.github.io/react-native-ui-kitten/docs/components/button/api
const renderRhs = () => {
return (
<Button size="tiny" appearance="outline" status="success">
Take control
</Button>
);
};
Conversation.navigationOptions = {
title: 'Conversation',
header: ({scene}) => {
const {options} = scene.descriptor;
const {title} = options;
return (
<SafeAreaView>
<TopNavigation
title={title}
alignment="center"
rightControls={renderRhs()}
/>
</SafeAreaView>
);
},
};
UI Kitten and Eva version
Package | Version |
---|---|
@eva-design/eva | ^1.3.1 |
@ui-kitten/components | ^4.3.2 |
Issue Analytics
- State:
- Created 4 years ago
- Comments:9
Top Results From Across the Web
Unsupported configuration plain style ... - Stack Overflow
go to the navigation item · select the navigation Bar button · just change the bar button item in attribute inspector style -...
Read more >unknown volume format type qcow2' when adding a new disk ...
Bug 1784304 - [machines] There will be an error which is 'unsupported configuration: unknown volume format type qcow2' when adding a new disk...
Read more >How to Fix the Unsupported Configuration Error for Android ...
Android Wear Fix Unsupported Configuration Error · Launch the Settings application · Scroll down and tap on the 'Security' option · Toggle the...
Read more >How to convert Manual(unsupported - Trailhead - Salesforce
Lightning Configuration Converter is a tool that 1/ looks at OnClick JS buttons and converts them to Lightning alternatives. 2/ mass apply ...
Read more >Troubleshooting DB issues for Amazon RDS Custom
RDS Custom support perimeter and unsupported configurations ... This switch notifies the support perimeter that the agent is running.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I tried that at first, but the button was nowhere to be found. Now after trying some things out, it seems I needed to set:
{width: 'auto', height: 'auto'}
for the button to appear.Cheers.
@addic you can do like this:
Doesn’t feel the right way, but at least dismiss the warning.