Skip to content

Commit bfa5fb2

Browse files
committed
docs: Update readme and details in pubspec.yaml
1 parent a0eb535 commit bfa5fb2

File tree

5 files changed

+22
-74
lines changed

5 files changed

+22
-74
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
# DF Scalable
22

3+
<a href="https://www.buymeacoffee.com/robmllze" target="_blank"><img align="right" src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174"></a>
4+
35
Dart & Flutter Packages by DevCetra.com & contributors.
46

57
[![Pub Package](https://img.shields.io/pub/v/df_scalable.svg)](https://pub.dev/packages/df_scalable)
68
[![MIT License](https://img.shields.io/badge/License-MIT-blue.svg)](https://raw.githubusercontent.com/robmllze/df_scalable/main/LICENSE)
7-
[![Buy Me a Coffee](https://img.shields.io/badge/-buy_me_a%C2%A0coffee-gray?logo=buy-me-a-coffee)](https://www.buymeacoffee.com/robmllze)
89

910
---
1011

1112
## Summary
1213

13-
A package that provides a convenient structure for scaling your app. For a full feature set, please refer to the [API reference](https://pub.dev/documentation/df_scalable/).
14+
A package that provides a convenient method to scale your app UI and or down. For a full feature set, please refer to the [API reference](https://pub.dev/documentation/df_scalable/).
1415

1516
## Usage Example
1617

analysis_options.yaml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,21 @@
11
##.title
22
## ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
33
##
4-
## Dart/Flutter (DF) Packages by DevCetra.com & contributors. Use of this
5-
## source code is governed by an MIT-style license that can be found in the
6-
## LICENSE file.
4+
## Dart/Flutter (DF) Packages by DevCetra.com & contributors. See LICENSE file
5+
## in root directory.
76
##
87
## ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
98
##.title~
109

11-
include: package:lints/recommended.yaml
10+
include: package:flutter_lints/flutter.yaml
1211

1312
## ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
1413

1514
linter:
1615
rules:
1716
avoid_web_libraries_in_flutter: true
18-
camel_case_types: false
1917
constant_identifier_names: false
2018
file_names: false
21-
library_private_types_in_public_api: false
2219
non_constant_identifier_names: false
2320
omit_local_variable_types: true
2421
prefer_const_constructors_in_immutables: true
@@ -27,7 +24,9 @@ linter:
2724
prefer_relative_imports: true
2825
prefer_single_quotes: true
2926
require_trailing_commas: true
30-
unnecessary_this: true
27+
unnecessary_this: false
28+
camel_case_types: false
29+
library_private_types_in_public_api: false
3130

3231
analyzer:
3332
exclude:
@@ -39,7 +38,6 @@ analyzer:
3938
avoid_type_to_string: error
4039
depend_on_referenced_packages: error
4140
flutter_style_todos: error
42-
invalid_use_of_protected_member: error
4341
no_leading_underscores_for_local_identifiers: error
4442
prefer_final_in_for_each: error
4543
prefer_relative_imports: error

example/example.dart

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1 @@
1-
//.title
2-
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
3-
//
4-
// Dart/Flutter (DF) Packages by DevCetra.com & contributors. See LICENSE file
5-
// in root directory.
6-
//
7-
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
8-
//.title~
9-
10-
//import 'package:df_scalable/df_scalable.dart';
11-
12-
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
13-
14-
void main() {
15-
print('Hello World!');
16-
}
1+
// Coming soon.

flutter_analysis_options.yaml

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

pubspec.yaml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,19 @@
88
##.title~
99

1010
name: df_scalable
11-
description: A package that provides a convenient structure for scaling your app.
11+
description: A package that provides a convenient method to scale your app UI and or down.
1212
version: 0.2.1
1313
repository: https://github.com/robmllze/df_scalable
14+
# homepage: TODO
15+
# documentation: TODO
16+
funding:
17+
- https://www.buymeacoffee.com/robmllze
18+
topics:
19+
- accessibility
20+
- app-scale
21+
- pod
22+
- ui
23+
- ui-scaling
1424

1525
## -----------------------------------------------------------------------------
1626

@@ -23,7 +33,7 @@ environment:
2333
dependencies:
2434
flutter:
2535
sdk: flutter
26-
df_pod: ^0.3.2
36+
df_pod: ^0.3.3
2737

2838
## -----------------------------------------------------------------------------
2939

0 commit comments

Comments
 (0)