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 theme is _not_ perfect in the slightest, but it achieves my goal of | |
| * making a dark theme for much of the DO UI. | |
| * Suggestions are welcome, and will be implemented to this theme at my own discretion. | |
| */ | |
| svg rect { | |
| fill: #1f1f1f !important; /* Solid Dark Grey */ | |
| stroke: #333333; /* Optional: adds a subtle border */ | |
| stroke-width: 1px; |
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
| -----BEGIN PUBLIC KEY----- | |
| MCowBQYDK2VuAyEAHuwOJwn18Gp31XNtQdNkjeZPXr3ZMNZkwr+EzIq/PAU= | |
| -----END PUBLIC KEY----- |
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
| import 'dart:math'; | |
| extension exponent on num { | |
| num operator ^(double power) { | |
| return pow(this, power); | |
| } | |
| } | |
| void main(){ | |
| int x = 8; | |
| double y = 8; | |
| print('x^2: ${x^2}'); |