Skip to content

Commit 24ed4bc

Browse files
committed
Initial commit
0 parents  commit 24ed4bc

File tree

8 files changed

+347
-0
lines changed

8 files changed

+347
-0
lines changed

.gitignore

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
12+
# IntelliJ related
13+
*.iml
14+
*.ipr
15+
*.iws
16+
.idea/
17+
18+
# The .vscode folder contains launch configuration and tasks you configure in
19+
# VS Code which you may wish to be included in version control, so this line
20+
# is commented out by default.
21+
#.vscode/
22+
23+
# Flutter/Dart/Pub related
24+
**/doc/api/
25+
.dart_tool/
26+
.flutter-plugins
27+
.flutter-plugins-dependencies
28+
.packages
29+
.pub-cache/
30+
.pub/
31+
build/
32+
33+
# Android related
34+
**/android/**/gradle-wrapper.jar
35+
**/android/.gradle
36+
**/android/captures/
37+
**/android/gradlew
38+
**/android/gradlew.bat
39+
**/android/local.properties
40+
**/android/**/GeneratedPluginRegistrant.java
41+
42+
# iOS/XCode related
43+
**/ios/**/*.mode1v3
44+
**/ios/**/*.mode2v3
45+
**/ios/**/*.moved-aside
46+
**/ios/**/*.pbxuser
47+
**/ios/**/*.perspectivev3
48+
**/ios/**/*sync/
49+
**/ios/**/.sconsign.dblite
50+
**/ios/**/.tags*
51+
**/ios/**/.vagrant/
52+
**/ios/**/DerivedData/
53+
**/ios/**/Icon?
54+
**/ios/**/Pods/
55+
**/ios/**/.symlinks/
56+
**/ios/**/profile
57+
**/ios/**/xcuserdata
58+
**/ios/.generated/
59+
**/ios/Flutter/App.framework
60+
**/ios/Flutter/Flutter.framework
61+
**/ios/Flutter/Flutter.podspec
62+
**/ios/Flutter/Generated.xcconfig
63+
**/ios/Flutter/app.flx
64+
**/ios/Flutter/app.zip
65+
**/ios/Flutter/flutter_assets/
66+
**/ios/Flutter/flutter_export_environment.sh
67+
**/ios/ServiceDefinitions.json
68+
**/ios/Runner/GeneratedPluginRegistrant.*
69+
70+
# Exceptions to above rules.
71+
!**/ios/**/default.mode1v3
72+
!**/ios/**/default.mode2v3
73+
!**/ios/**/default.pbxuser
74+
!**/ios/**/default.perspectivev3
75+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

.metadata

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: fb60324e6fa791bedeade8be4773a42037e11f62
8+
channel: beta
9+
10+
project_type: package

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## [0.0.1] - TODO: Add release date.
2+
3+
* TODO: Describe initial release.

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TODO: Add your license here.

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# callor
2+
3+
Composable, immutable, object-oriented set of form field validators.
4+
5+
For easier composability, each validator implements the call() method.
6+
7+
## Getting Started
8+
9+
This project is a starting point for a Dart
10+
[package](https://flutter.dev/developing-packages/),
11+
a library module containing code that can be shared easily across
12+
multiple Flutter or Dart projects.
13+
14+
For help getting started with Flutter, view our
15+
[online documentation](https://flutter.dev/docs), which offers tutorials,
16+
samples, guidance on mobile development, and a full API reference.

lib/callor.dart

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
library callor;

pubspec.lock

+188
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,188 @@
1+
# Generated by pub
2+
# See https://dart.dev/tools/pub/glossary#lockfile
3+
packages:
4+
archive:
5+
dependency: transitive
6+
description:
7+
name: archive
8+
url: "https://pub.dartlang.org"
9+
source: hosted
10+
version: "2.0.11"
11+
args:
12+
dependency: transitive
13+
description:
14+
name: args
15+
url: "https://pub.dartlang.org"
16+
source: hosted
17+
version: "1.5.2"
18+
async:
19+
dependency: transitive
20+
description:
21+
name: async
22+
url: "https://pub.dartlang.org"
23+
source: hosted
24+
version: "2.4.0"
25+
boolean_selector:
26+
dependency: transitive
27+
description:
28+
name: boolean_selector
29+
url: "https://pub.dartlang.org"
30+
source: hosted
31+
version: "1.0.5"
32+
charcode:
33+
dependency: transitive
34+
description:
35+
name: charcode
36+
url: "https://pub.dartlang.org"
37+
source: hosted
38+
version: "1.1.2"
39+
collection:
40+
dependency: transitive
41+
description:
42+
name: collection
43+
url: "https://pub.dartlang.org"
44+
source: hosted
45+
version: "1.14.11"
46+
convert:
47+
dependency: transitive
48+
description:
49+
name: convert
50+
url: "https://pub.dartlang.org"
51+
source: hosted
52+
version: "2.1.1"
53+
crypto:
54+
dependency: transitive
55+
description:
56+
name: crypto
57+
url: "https://pub.dartlang.org"
58+
source: hosted
59+
version: "2.1.3"
60+
flutter:
61+
dependency: "direct main"
62+
description: flutter
63+
source: sdk
64+
version: "0.0.0"
65+
flutter_test:
66+
dependency: "direct dev"
67+
description: flutter
68+
source: sdk
69+
version: "0.0.0"
70+
image:
71+
dependency: transitive
72+
description:
73+
name: image
74+
url: "https://pub.dartlang.org"
75+
source: hosted
76+
version: "2.1.4"
77+
matcher:
78+
dependency: transitive
79+
description:
80+
name: matcher
81+
url: "https://pub.dartlang.org"
82+
source: hosted
83+
version: "0.12.6"
84+
meta:
85+
dependency: transitive
86+
description:
87+
name: meta
88+
url: "https://pub.dartlang.org"
89+
source: hosted
90+
version: "1.1.8"
91+
path:
92+
dependency: transitive
93+
description:
94+
name: path
95+
url: "https://pub.dartlang.org"
96+
source: hosted
97+
version: "1.6.4"
98+
pedantic:
99+
dependency: transitive
100+
description:
101+
name: pedantic
102+
url: "https://pub.dartlang.org"
103+
source: hosted
104+
version: "1.8.0+1"
105+
petitparser:
106+
dependency: transitive
107+
description:
108+
name: petitparser
109+
url: "https://pub.dartlang.org"
110+
source: hosted
111+
version: "2.4.0"
112+
quiver:
113+
dependency: transitive
114+
description:
115+
name: quiver
116+
url: "https://pub.dartlang.org"
117+
source: hosted
118+
version: "2.0.5"
119+
sky_engine:
120+
dependency: transitive
121+
description: flutter
122+
source: sdk
123+
version: "0.0.99"
124+
source_span:
125+
dependency: transitive
126+
description:
127+
name: source_span
128+
url: "https://pub.dartlang.org"
129+
source: hosted
130+
version: "1.5.5"
131+
stack_trace:
132+
dependency: transitive
133+
description:
134+
name: stack_trace
135+
url: "https://pub.dartlang.org"
136+
source: hosted
137+
version: "1.9.3"
138+
stream_channel:
139+
dependency: transitive
140+
description:
141+
name: stream_channel
142+
url: "https://pub.dartlang.org"
143+
source: hosted
144+
version: "2.0.0"
145+
string_scanner:
146+
dependency: transitive
147+
description:
148+
name: string_scanner
149+
url: "https://pub.dartlang.org"
150+
source: hosted
151+
version: "1.0.5"
152+
term_glyph:
153+
dependency: transitive
154+
description:
155+
name: term_glyph
156+
url: "https://pub.dartlang.org"
157+
source: hosted
158+
version: "1.1.0"
159+
test_api:
160+
dependency: transitive
161+
description:
162+
name: test_api
163+
url: "https://pub.dartlang.org"
164+
source: hosted
165+
version: "0.2.11"
166+
typed_data:
167+
dependency: transitive
168+
description:
169+
name: typed_data
170+
url: "https://pub.dartlang.org"
171+
source: hosted
172+
version: "1.1.6"
173+
vector_math:
174+
dependency: transitive
175+
description:
176+
name: vector_math
177+
url: "https://pub.dartlang.org"
178+
source: hosted
179+
version: "2.0.8"
180+
xml:
181+
dependency: transitive
182+
description:
183+
name: xml
184+
url: "https://pub.dartlang.org"
185+
source: hosted
186+
version: "3.5.0"
187+
sdks:
188+
dart: ">=2.4.0 <3.0.0"

pubspec.yaml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: callor
2+
description: A new Flutter package project.
3+
version: 0.0.1
4+
author:
5+
homepage:
6+
7+
environment:
8+
sdk: ">=2.1.0 <3.0.0"
9+
10+
dependencies:
11+
flutter:
12+
sdk: flutter
13+
14+
dev_dependencies:
15+
flutter_test:
16+
sdk: flutter
17+
18+
# For information on the generic Dart part of this file, see the
19+
# following page: https://dart.dev/tools/pub/pubspec
20+
21+
# The following section is specific to Flutter.
22+
flutter:
23+
24+
# To add assets to your package, add an assets section, like this:
25+
# assets:
26+
# - images/a_dot_burr.jpeg
27+
# - images/a_dot_ham.jpeg
28+
#
29+
# For details regarding assets in packages, see
30+
# https://flutter.dev/assets-and-images/#from-packages
31+
#
32+
# An image asset can refer to one or more resolution-specific "variants", see
33+
# https://flutter.dev/assets-and-images/#resolution-aware.
34+
35+
# To add custom fonts to your package, add a fonts section here,
36+
# in this "flutter" section. Each entry in this list should have a
37+
# "family" key with the font family name, and a "fonts" key with a
38+
# list giving the asset and other descriptors for the font. For
39+
# example:
40+
# fonts:
41+
# - family: Schyler
42+
# fonts:
43+
# - asset: fonts/Schyler-Regular.ttf
44+
# - asset: fonts/Schyler-Italic.ttf
45+
# style: italic
46+
# - family: Trajan Pro
47+
# fonts:
48+
# - asset: fonts/TrajanPro.ttf
49+
# - asset: fonts/TrajanPro_Bold.ttf
50+
# weight: 700
51+
#
52+
# For details regarding fonts in packages, see
53+
# https://flutter.dev/custom-fonts/#from-packages

0 commit comments

Comments
 (0)