Skip to content

Commit

Permalink
add infinite.md
Browse files Browse the repository at this point in the history
  • Loading branch information
syrel committed Dec 14, 2020
1 parent 0d071c8 commit 05b2781
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
34 changes: 34 additions & 0 deletions Infinite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Infinite Element

Allows users to create practically infinite scrollable elements such as for example a vertical scrollable list.

## Depend on it
```smalltalk
spec
baseline: 'BlocPacInfinite' with: [
spec repository: 'github://feenkcom/bloc-pac:main/src' ].
...
spec
package: #'MyPackage' with: [
spec requires: #(#'MyOtherPackage' #BlocPacInfinite ) ].
```


### Installation

```smalltalk
Metacello new
baseline: 'BlocPacInfinite';
repository: 'github://feenkcom/bloc-pac:main/src';
load
```

### Examples:
```smalltalk
Metacello new
baseline: 'BlocPacInfiniteExamples';
repository: 'github://feenkcom/bloc-pac:main/src';
load
```
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ Bloc Pac is a suite of libraries and components to help developers create UI wit

## Components
[Focus Finder](Focus-Finder.md) - to find focusable elements
[Infinite Element](Infinite.md) - to create practically infinitly scrollable elements

0 comments on commit 05b2781

Please sign in to comment.