Matheus Matos

Results 3 comments of Matheus Matos

Just for information, there's a simple script that can generate the `tld_list.json` file: ```python import re import requests import json GEONAME_URL = "http://download.geonames.org/export/dump/countryInfo.txt" response = requests.get(GEONAME_URL) data = response.text tld_pattern...

It's possible using `pointerEvents='box-none'`on the Header component, and `pointerEvents=auto` on the horizontal FlatList. The problem is that you will not be able to scroll the vertical FlatList touching the horizontal...