It's All Writing.

Writing makes you happy.

Entries from 2020-05-01 to 1 month

How to get dark mode settings on iOS at React Native

Environment React Native react-native-appearance Code You can get the iOS color scheme using react-native-appearance. gist.github.com

How to read config.ini which define configuration values at golang

Environment go ( golang ) Premise You have a config.ini file which define configuration values as follows and you want to load it with go. gist.github.com Code We can easily do this using package ini. If you have not installed ini, you can…

How to sort Objects by multiple fields at Apex

Environment Apex Premise You can sort List of Objects with using sort method as below. gist.github.com In above example, shops is sorted by name ascending order ( Shop A, Shop B, Shop C). But what if you want to sort by multiple fields in …