Skip to content

Instantly share code, notes, and snippets.

View danilowoz's full-sized avatar

Danilo Woznica danilowoz

View GitHub Profile
query blogPosts {
allMarkdownRemark(sort: { fields: [frontmatter___date], order: DESC }) {
edges {
node {
frontmatter {
title
category
date
}
html
[...new Set(Array.from(document.querySelectorAll("[class]")).flatMap(e => Array.from(e.classList)))]
@danilowoz
danilowoz / react-native-gotchas.md
Last active February 23, 2021 14:22
React Native gotchas

Android gotchas

This document aims to list some "gotchas" in Android development using React Native, or in other words, common problems that a developer might face during the development of Android views and how to solve it.

Shadows

Following the React Native documentation, to set a shadow in an element it needs the following properties: shadowColor, shadowOffset, shadowOpacity and shadowRadius. However, on Android, it needs to use the elevation view style prop from react-native to add shadows, which will also affects the z-index value.

{
  // iOS
 shadowColor: "#000",
mport { Sandpack } from "@codesandbox/sandpack-react";
const App = () => {
const files = {}
return (
<SandpackProvider
files={files}
theme="light"
template="static"