Çağrı

Results 13 comments of Çağrı

I am fetching online data to fill swiper elements. Because the component has no data when it renders swiper doesn't work properly. Dots stack, loop doesn't work etc. In my...

Another solution is using state and useEffect hook (or componentDidMount) and forcing autoplay to 'true' ``` const [loopEvents, setLoopEvents] = useState(false) useEffect(() => { setLoopEvents(true) }, []) ``` swiper is...

this happens when you add a new worksheet programatically and resize it manually. if you have more than 1 worksheet you can change the selected worksheet manually to avoid it....

Hello, i handle this bug by changing the current worksheet property when new worksheet added. You can try it until the bug fixed. ``` grid.CurrentWorksheet = grid.Worksheets[1]; grid.CurrentWorksheet = grid.Worksheets[0];...

You have to create user in 3 steps. It is a bug i guess. First you have to initialize user. Second you have to get all users (i don't know...

i highly recommend you to use pyzk instead of this.

These configurations already exist: ![image](https://user-images.githubusercontent.com/41010080/187611826-af8416f7-46dd-4ab1-939b-920c8e6555bb.png) This is not about it. When i remove this package i can compile successfully. The problem is the package itself.

no. i am not using this library anymore. i am not using any libraries tho. i solved it by using twitter rest api. it was a little bit hard to...

``` const TwitterSignup = ({ navigation }) => { const CONSUMER_KEY = 'Your consumer key / api key'; const CONSUMER_SECRET = 'your consumer secret key / api secret key'; let...

same with ios. drawer never opens after closing it once. but the state of drawer changes. i am swiping from left of the screen to the right. drawer doesn't appear...