We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 650c0ce commit a58bd48Copy full SHA for a58bd48
lib/src/_generator_converger.dart
@@ -14,7 +14,7 @@ import 'package:df_string/df_string.dart';
14
15
import 'package:path/path.dart' as p;
16
17
-import '_insight.dart';
+import 'generate_screen/_insight.dart';
18
19
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
20
@@ -46,8 +46,7 @@ final generatorConverger = _GeneratorConverger(
46
47
// Determine the output file path.
48
final folderName = replacement.insight.screenClassName.toSnakeCase();
49
- final outputFilePath =
50
- p.join(replacement.insight.path, folderName, fileName);
+ final outputFilePath = p.join(replacement.insight.path, folderName, fileName);
51
52
// Write the generated Dart file.
53
await writeFile(outputFilePath, output);
0 commit comments