Web expo
Which versions are you using:
No import problem
Attempted import error: 'Swiper' is not exported from 'react-native-swiper'.
create new expo project add swiper somewhere
replace :
module.exports = Swiper;
module.exports.default = Swiper;
by
export default Swiper
export {Swiper}
try with:
import Swiper from 'react-native-swiper/src';
same here.
try with:
import Swiper from 'react-native-swiper/src';
this works, but is a hacky work around as it shows an issue in TypeScript compiler.
I got the same error:
Attempted import error: 'react-native-swiper' does not contain a default export (imported as 'Swiper').
Most helpful comment
try with:
import Swiper from 'react-native-swiper/src';