Skip to content

Instantly share code, notes, and snippets.

View hellohejinyu's full-sized avatar
👋

何锦余 hellohejinyu

👋
  • Shanghai
  • 04:52 (UTC +08:00)
View GitHub Profile
@hellohejinyu
hellohejinyu / .npmrc
Last active May 4, 2023 02:26 — forked from blackcater/.npmrc
.npmrc configuration
# global config
# init config
init-author-name = blackcater
init-author-email = i@blackcater.dev
init-author-url = https://blackcater.com
# git tag message
message = "chore: version bump to v%s"
@hellohejinyu
hellohejinyu / main.dart
Last active February 9, 2023 23:46
flutter colorfiltered bug in web
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
@hellohejinyu
hellohejinyu / import.dart
Last active October 21, 2020 09:33
import.dart
library test_import;
testPrint() {
print("hello world");
}
@hellohejinyu
hellohejinyu / main.dart
Created September 24, 2020 08:33
flutter_intro_3
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
@hellohejinyu
hellohejinyu / main.dart
Created September 24, 2020 07:57
flutter_intro_2
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
@hellohejinyu
hellohejinyu / main.dart
Last active September 24, 2020 07:33
flutter_intro
import 'package:flutter/material.dart';
final Color darkBlue = Color.fromARGB(255, 18, 32, 47);
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override