Skip to content

Commit 5e4236c

Browse files
committed
+Update dependencies
1 parent 0319e27 commit 5e4236c

15 files changed

+99
-268
lines changed

.gitignore

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,29 @@
1010
## ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
1111
##.title~
1212

13-
**/.dart_tool/
13+
# MacOS.
1414
**/.DS_Store
15-
**/build/
16-
**/pubspec.lock
17-
**/.github/.git
18-
**/.metadata
15+
16+
# Dart & Flutter.
17+
**/.dart_tool/
1918
**/.flutter-plugins
2019
**/.flutter-plugins-dependencies
20+
**/.metadata
21+
**/.pub-cache/
22+
**/.pub/
23+
**/build/
2124
**/pubspec_overrides.yaml
25+
**/pubspec.lock
26+
**/custom_lint.log
27+
28+
# GitHub.
29+
**/.github/.git
2230

23-
# Don't support IntelliJ.
24-
**/*.iml
25-
**/*.idea/
31+
# Firebase.
32+
**/.firebase
33+
**/firebase-debug.log
2634

27-
# custom_lint
28-
**/custom_lint.log
35+
# Android
36+
/android/app/debug
37+
/android/app/profile
38+
/android/app/release

DEVELOPER_NOTES.md

Lines changed: 0 additions & 76 deletions
This file was deleted.

_README_CONTENT.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
11
## Summary
22

3-
A tool to generate ready-made screen templates for your Flutter app (uses df_generate_screen_core).
4-
5-
## Usage Instructions
6-
7-
1. You do not need to add this package to your pubspec.yaml file.
8-
2. Activate the tool by running: `dart pub global activate df_generate_screen` or `dart pub global activate --source git https://github.com/dev-cetera/df_generate_screen.git`.
9-
3. Navigate to a folder in your project using the terminal (Tip: If you're using VS Code, you can right-click on a folder and select `"Open in Integrated Terminal"`).
10-
4. Run `genscr -n ExampleScreen` to generate a screen template called `ExampleScreen` at the current directory.
3+
A tool to generate ready-made screen templates for your Flutter app (uses df_generate_screen_core).

bin/.gitignore

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,29 @@
1010
## ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
1111
##.title~
1212

13-
**/.dart_tool/
13+
# MacOS.
1414
**/.DS_Store
15-
**/build/
16-
**/pubspec.lock
17-
**/.github/.git
18-
**/.metadata
15+
16+
# Dart & Flutter.
17+
**/.dart_tool/
1918
**/.flutter-plugins
2019
**/.flutter-plugins-dependencies
20+
**/.metadata
21+
**/.pub-cache/
22+
**/.pub/
23+
**/build/
2124
**/pubspec_overrides.yaml
25+
**/pubspec.lock
26+
**/custom_lint.log
27+
28+
# GitHub.
29+
**/.github/.git
2230

23-
# Don't support IntelliJ.
24-
**/*.iml
25-
**/*.idea/
31+
# Firebase.
32+
**/.firebase
33+
**/firebase-debug.log
2634

27-
# custom_lint
28-
**/custom_lint.log
35+
# Android
36+
/android/app/debug
37+
/android/app/profile
38+
/android/app/release
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import 'package:df_generate_screen/df_generate_screen.dart';
1515
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
1616

1717
void main(List<String> args) async {
18-
await genScreenApp(
18+
await generateScreen(
1919
args,
2020
defaultTemplates: const [
2121
'https://raw.githubusercontent.com/dev-cetera/df_generate_screen/main/templates/v2/_state.dart.md',
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import 'package:df_generate_screen/df_generate_screen.dart';
1515
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
1616

1717
void main(List<String> args) async {
18-
await genScreenAccessApp(
18+
await generateScreenAccess(
1919
args,
2020
defaultTemplates: const [
2121
'https://raw.githubusercontent.com/dev-cetera/df_generate_screen/main/templates/v2/_access.g.dart.md',
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import 'package:df_generate_screen/df_generate_screen.dart';
1515
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
1616

1717
void main(List<String> args) async {
18-
await genScreenBindingsApp(
18+
await generateScreenBindings(
1919
args,
2020
defaultTemplates: const [
2121
'https://raw.githubusercontent.com/dev-cetera/df_generate_screen/main/templates/v2/_bindings.g.dart.md',

bin/gen_screen.dart

Lines changed: 0 additions & 26 deletions
This file was deleted.

bin/gen_screen_access.dart

Lines changed: 0 additions & 24 deletions
This file was deleted.

bin/gen_screen_bindings.dart

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)