From 520fcfdf9e1d9e6ec147bdc4a2c776d2cf7f0b68 Mon Sep 17 00:00:00 2001 From: ue Date: Thu, 12 Dec 2019 00:32:22 +0300 Subject: [PATCH] added scrollview --- src/screens/boost/screen/boostScreen.js | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/src/screens/boost/screen/boostScreen.js b/src/screens/boost/screen/boostScreen.js index c66ea9805..a24047c14 100644 --- a/src/screens/boost/screen/boostScreen.js +++ b/src/screens/boost/screen/boostScreen.js @@ -1,5 +1,5 @@ import React from 'react'; -import { View, Platform } from 'react-native'; +import { View, Platform, ScrollView } from 'react-native'; import get from 'lodash/get'; import { useIntl } from 'react-intl'; @@ -44,16 +44,18 @@ const BoostScreen = () => { {isLoading ? ( ) : ( - productList.map(product => ( - buyItem(id)} - /> - )) + + {productList.map(product => ( + buyItem(id)} + /> + ))} + )} )}