File tree Expand file tree Collapse file tree 1 file changed +13
-11
lines changed
lib/src/generate_screen_access Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -44,15 +44,17 @@ Future<void> generateScreenAccess({
44
44
);
45
45
final sourceFileExplorerResults = await sourceFileExporer.explore ();
46
46
47
- final template = extractCodeFromMarkdown (
48
- await loadFileFromGitHub (
49
- username: 'robmllze' ,
50
- repo: 'df_generate_screen' ,
51
- filePath: [
52
- templateFilePath ?? 'templates/screen_access.dart.md' ,
53
- ].join ('/' ),
54
- ),
55
- );
47
+ printYellow (sourceFileExplorerResults.filePathResults.map ((e) => e.path));
48
+
49
+ // final template = extractCodeFromMarkdown(
50
+ // await loadFileFromGitHub(
51
+ // username: 'robmllze',
52
+ // repo: 'df_generate_screen',
53
+ // filePath: [
54
+ // templateFilePath ?? 'templates/screen_access.dart.md',
55
+ // ].join('/'),
56
+ // ),
57
+ // );
56
58
57
59
// ---------------------------------------------------------------------------
58
60
@@ -63,8 +65,8 @@ Future<void> generateScreenAccess({
63
65
);
64
66
65
67
// For each file...
66
- for (final filePathResult in sourceFileExplorerResults.filePathResults
67
- .where ((e) => e.category == _Categories .DART )) {
68
+ for (final filePathResult
69
+ in sourceFileExplorerResults.filePathResults .where ((e) => e.category == _Categories .DART )) {
68
70
final filePath = filePathResult.path;
69
71
70
72
// Extract insights from the file.
You can’t perform that action at this time.
0 commit comments