Posts by Cesar Barros • 21 points
5 posts
-
0
votes1
answer85
viewsA: Android permission when using Cameraroll to save photo in gallery using React-Native
With just this line of code makes it difficult to help, my tip is you use the @React-Native-community/cameraroll, do not use React Native’s Cameraroll, it is deprecated, (you can see it here)…
-
0
votes2
answers925
viewsA: How to change the color of a text according to the state of the object?
Hello, I think you need something like this: The JSON used was [ { id: "1", title: "30/05/2020", state: true }, { id: "2", title: "30/06/2040", state: false }, { id: "3", title: "30/06/2040", state:…
-
0
votes1
answer147
viewsA: CSS to style Total Woocommerce
Hello, It’s coming to me like this: What you’re having trouble doing?…
-
2
votes1
answer295
viewsA: css Display: grid; cannot align
Hello, I think you’re trying to do this: https://codepen.io/CesarCEARA/pen/RZMogY I made this example for you, see if you understand. /* style */ .box { background-color: #444; color: #fff; padding:…
cssanswered Cesar Barros 21 -
0
votes1
answer83
viewsA: Keep branch history when moving or renaming folder
Hello, You can rename using -m. 1) git checkout "branch" 2) git branch -m "rename_branch" A hug Note: Let me know if this helped you.