Skip to content

Commit 1a8c12a

Browse files
committed
📝 add Header
1 parent e9a583b commit 1a8c12a

File tree

27 files changed

+195
-52
lines changed

27 files changed

+195
-52
lines changed

.vscode/settings.json

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
{
2-
"dart.lineLength": 100,
3-
"editor.formatOnSave": true,
4-
"editor.formatOnType": true
2+
"dart.lineLength": 100,
3+
"editor.formatOnSave": true,
4+
"editor.formatOnType": true,
5+
"autoHeader": {
6+
"format": {
7+
"startWith": "/*",
8+
"middleWith": "*",
9+
"endWith": "*/",
10+
"headerPrefix": "@"
11+
},
12+
"header": {
13+
"Author": "Flutter Journey 🎯 <[email protected]>",
14+
"Created": {
15+
"type": "createTime",
16+
"format": "YYYY-MM-DD HH:mm:ss"
17+
},
18+
"Message": "You look very hardworking 👨‍💻. Keep focusing on your goals. 🌤️"
19+
}
520
}
21+
}

lib/common/widgets/appbar/app_bar.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* @ Author: Flutter Journey 🎯 <[email protected]>
3+
* @ Created: 2024-12-11 07:31:40
4+
* @ Message: You look very hardworking 👨‍💻. Keep focusing on your goals. 🌤️
5+
*/
6+
17
import 'package:flutter/material.dart';
28
import 'package:flutter_clean_architecture_template/common/helpers/is_dark_mode.dart';
39
import 'package:flutter_clean_architecture_template/core/configs/theme/app_color.dart';

lib/common/widgets/button/basic_app_button.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* @ Author: Flutter Journey 🎯 <[email protected]>
3+
* @ Created: 2024-12-11 07:31:40
4+
* @ Message: You look very hardworking 👨‍💻. Keep focusing on your goals. 🌤️
5+
*/
6+
17
import 'package:flutter/material.dart';
28
import 'package:flutter_clean_architecture_template/core/configs/theme/app_color.dart';
39

lib/core/configs/assets/app_vectors.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* @ Author: Flutter Journey 🎯 <[email protected]>
3+
* @ Created: 2024-12-11 07:31:40
4+
* @ Message: You look very hardworking 👨‍💻. Keep focusing on your goals. 🌤️
5+
*/
6+
17
class AppVectors {
28
static const String basePath = "assets/vectors/";
39
static const String format = '.svg';

lib/core/configs/theme/app_color.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* @ Author: Flutter Journey 🎯 <[email protected]>
3+
* @ Created: 2024-12-11 07:31:40
4+
* @ Message: You look very hardworking 👨‍💻. Keep focusing on your goals. 🌤️
5+
*/
6+
17
import 'package:flutter/material.dart';
28

39
class AppColors {

lib/core/configs/theme/app_theme.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* @ Author: Flutter Journey 🎯 <[email protected]>
3+
* @ Created: 2024-12-11 07:31:40
4+
* @ Message: You look very hardworking 👨‍💻. Keep focusing on your goals. 🌤️
5+
*/
6+
17
import 'package:flutter/material.dart';
28
import 'package:flutter_clean_architecture_template/core/configs/theme/app_color.dart';
39

lib/core/constants/app_urls.dart

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1+
/*
2+
* @ Author: Flutter Journey 🎯 <[email protected]>
3+
* @ Created: 2024-12-11 07:31:40
4+
* @ Message: You look very hardworking 👨‍💻. Keep focusing on your goals. 🌤️
5+
*/
6+
17
class AppUrls {
28
static const coverFireStorage =
39
'https://firebasestorage.googleapis.com/v0/b/spotify-flutter-4aa82.appspot.com/o/covers%2F';
410
static const songFireStorage =
511
'https://firebasestorage.googleapis.com/v0/b/spotify-flutter-4aa82.appspot.com/o/songs%2F';
612
static const temp = 'Son-Tung-';
713
static const mediaAlt = 'alt=media';
8-
static const defaultAvatar =
9-
'https://cdn-icons-png.flaticon.com/512/10542/10542486.png';
14+
static const defaultAvatar = 'https://cdn-icons-png.flaticon.com/512/10542/10542486.png';
1015
}

lib/core/usecase/usecase.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* @ Author: Flutter Journey 🎯 <[email protected]>
3+
* @ Created: 2024-12-11 07:31:40
4+
* @ Message: You look very hardworking 👨‍💻. Keep focusing on your goals. 🌤️
5+
*/
6+
17
abstract class UseCase<Type, Params> {
28
Future<Type> call({Params params});
39
}

lib/data/models/auth/create_user_req.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* @ Author: Flutter Journey 🎯 <[email protected]>
3+
* @ Created: 2024-12-11 07:31:40
4+
* @ Message: You look very hardworking 👨‍💻. Keep focusing on your goals. 🌤️
5+
*/
6+
17
class CreateUserReq {
28
final String email;
39
final String fullName;

lib/data/models/auth/signin_user_req.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
/*
2+
* @ Author: Flutter Journey 🎯 <[email protected]>
3+
* @ Created: 2024-12-11 07:31:40
4+
* @ Message: You look very hardworking 👨‍💻. Keep focusing on your goals. 🌤️
5+
*/
6+
17
class SigninUserReq {
28
final String email;
39
final String password;

0 commit comments

Comments
 (0)