A few approaches on grouping HTML lists..
For listbox (popup) similar to <select>:
<div role="menu">
<ul role="group">
<li role="option">...</li>
<li role="option">...</li>
</ul>
| type Singleton = { | |
| done(): void; | |
| }; | |
| type SingletonContructor = { | |
| new (): Singleton; | |
| (): Singleton; | |
| staticDone(): void; | |
| }; |
A few approaches on grouping HTML lists..
For listbox (popup) similar to <select>:
<div role="menu">
<ul role="group">
<li role="option">...</li>
<li role="option">...</li>
</ul>
| cd ~ | |
| sudo apt-get install unzip zip | |
| # see https://developer.android.com/studio#command-tools for latest commandline-tools | |
| wget https://dl.google.com/android/repository/commandlinetools-linux-9123335_latest.zip | |
| unzip commandlinetools-linux-6858069_latest.zip -d Android | |
| rm commandlinetools-linux-6858069_latest.zip | |
| sudo apt-get install -y lib32z1 openjdk-8-jdk # or install openjdk-11-jdk | |
| export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 | |
| export PATH=$PATH:$JAVA_HOME/bin | |
| printf "\n\nexport JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64\nexport PATH=\$PATH:\$JAVA_HOME/bin" >> ~/.bashrc |
Install, build and debug a react native app in WSL2 (Windows Subsystem for Linux) and Ubuntu.
I hereby claim:
To claim this, I am signing this object:
People
:bowtie: |
π :smile: |
π :laughing: |
|---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Learning React</title> | |
| <link rel="stylesheet" href="./style.css"> | |
| <script src="https://unpkg.com/react@16/umd/react.development.js"></script> | |
| <script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> | |
| <script src="https://unpkg.com/@babel/standalone/babel.min.js"></script> |