Skip to content

Instantly share code, notes, and snippets.

View H2Sxxa's full-sized avatar
🔍
Searching...

H2Sxxa H2Sxxa

🔍
Searching...
View GitHub Profile
{"name":"vscode-extensions","extensions":"[{\"identifier\":{\"id\":\"akamud.vscode-theme-onedark\",\"uuid\":\"9b2c953d-6ad4-46d1-b18e-7e5992d1d8a6\"},\"displayName\":\"Atom One Dark Theme\"},{\"identifier\":{\"id\":\"alexisvt.flutter-snippets\",\"uuid\":\"2972da43-20b6-4207-8d1e-9cbc7529bd04\"},\"displayName\":\"Flutter Widget Snippets\"},{\"identifier\":{\"id\":\"amirha.better-comments-2\",\"uuid\":\"926ce728-91d1-4964-b83d-ea58f1c71116\"},\"displayName\":\"Better Comments (with ELPS support)\"},{\"identifier\":{\"id\":\"charliermarsh.ruff\",\"uuid\":\"c2ca9b43-fa38-44fc-928e-5125970b9c00\"},\"displayName\":\"Ruff\"},{\"identifier\":{\"id\":\"circlecodesolution.ccs-flutter-color\",\"uuid\":\"6c4c71db-5514-453f-82f3-bdc9602ccd2f\"},\"displayName\":\"Flutter Color\"},{\"identifier\":{\"id\":\"dart-code.dart-code\",\"uuid\":\"f57f68ea-9ee8-42b5-9a97-041d3e4278c4\"},\"displayName\":\"Dart\"},{\"identifier\":{\"id\":\"dart-code.flutter\",\"uuid\":\"f6c3ec04-6057-4d9c-b997-69cba07a6158\"},\"displayName\":\"Flutter
@H2Sxxa
H2Sxxa / ba.dart
Created February 2, 2024 01:20
Blue Archive Style Button
/// Recommand to use `ElevatedButton(style: ..., ...)`
var baWhiteButtonStyle = ButtonStyle(
overlayColor: const MaterialStatePropertyAll(Colors.black12),
backgroundColor: const MaterialStatePropertyAll(Colors.white),
surfaceTintColor: const MaterialStatePropertyAll(Colors.white),
foregroundColor: const MaterialStatePropertyAll(Color(0xFF4b6989)),
shape: MaterialStatePropertyAll(
RoundedRectangleBorder(borderRadius: BorderRadius.circular(4)),
),