Cesar Dias

Results 78 comments of Cesar Dias

Yes indeed, the [textColor](https://github.com/cesardeazevedo/react-native-bottom-sheet-behavior/blob/master/lib/BottomSheetHeader.js#L14) was left behind, i am using the `highlightColor` prop as the actual default text color of the `` component, and only using the `textColorExpanded` to set...

It will doesn't work because each `` component inside can start with a different colors from each other when collapsed, but only one color when expanded, and i cannot add...

Hi, Thanks for report. There's a issue with the `@ReactProps` order, it setting the state before checking the `hideable` prop as `true`, i am still trying to figure out. But...

@mikeevstropov did you enabled `hideable={true}`?

That's indeed a limitation of both AppBars, i am still trying to approach a better way to render custom components inside AppBars, but it isn't easy as i thought, for...

Hi, i am not sure if i understood, but what exactly you tried? and what exactly you are trying to do?

I would do something like that, there it is. ```jsx import React, { Component, PropTypes } from 'react' import { Text, View, Animated, StatusBar, Dimensions, StyleSheet, } from 'react-native' import...

Oh, so sorry about that, completely my fault, i definitely was using wrong the `useNativeDriver` API. One the things to work around would be to wrap the BottomSheetBehavior together with...

You are right, i am also thinking in something on this direction, i am trying to getting in deep on the [ScrollView](https://github.com/facebook/react-native/blob/master/Libraries/Components/ScrollView/ScrollView.js) implementation, and i think it could be more...

Thanks for the report, i am going to take a look more closely this weekend, i am wondering if a full rebase of the BottomSheetBehavior from the SDK 27 is...