This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This Go utility function, svgToPng, converts an SVG file into a PNG image with a | |
| // specified width and height. It leverages the oksvg and rasterx libraries to parse | |
| // and render the SVG before encoding it as a PNG. | |
| // The script ensures proper file handling and error management, making it a reusable | |
| // and efficient solution for SVG-to-PNG conversion. | |
| // The main function provides an example usage, converting pb_mono.svg into out.png at 512x512 resolution. | |
| package main | |
| import ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| controller.text = someString; | |
| controller.selection = TextSelection.fromPosition(TextPosition(offset: controller.text.length)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| w100 Thin, the least thick | |
| w200 Extra-light | |
| w300 Light | |
| w400 Normal / regular / plain | |
| w500 Medium | |
| w600 Semi-bold | |
| w700 Bold | |
| w800 Extra-bold | |
| w900 Black, the most thick |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Flutter CI | |
| # This workflow is triggered on pushes to the repository. | |
| on: | |
| push: | |
| branches: | |
| - master | |