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
| const wishlist = [ | |
| { name: "Mini Puzzle", size: "small", clatters: "yes", weight: "light" }, | |
| { name: "Toy Car", size: "medium", clatters: "a bit", weight: "medium" }, | |
| { name: "Card Game", size: "small", clatters: "no", weight: "light" } | |
| ]; | |
| const presents = [ | |
| { size: "medium", clatters: "a bit", weight: "medium" }, | |
| { size: "small", clatters: "yes", weight: "light" }, | |
| ]; |
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 'package:flutter/material.dart'; | |
| const Color darkBlue = Color.fromARGB(255, 18, 32, 47); | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override |
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
| /* Code comment style */ | |
| .mtk3 { | |
| font-family: 'MonoLisaAlt Nerd Font', monospace !important; | |
| color: #f5c2e7 !important; | |
| font-weight: 300 !important; | |
| } | |
| .line-numbers { | |
| position: relative !important; | |
| width: 35px !important; |
OlderNewer