I use https://ant.design/components/table/ for react-native project.
I have fetch and all data works except boolead value!
Any suggestion?
const columns = [
{
title: 'Test',
dataIndex: 'testbool',
key: 'testbool',
width: '20%',
}, ...
after viewing your code you can try this:
const columns = [{
title: 'Test',
dataIndex: 'testbool',
key: 'testbool',
width: '20%',
render : (text) => String(text),
}, ...
this works in my code for accessing the boolean value. Hope it works in yours as well.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With