diff --git a/Infinite.md b/Infinite.md new file mode 100644 index 00000000..f953627c --- /dev/null +++ b/Infinite.md @@ -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 +``` diff --git a/README.md b/README.md index e3181ada..41aaa817 100644 --- a/README.md +++ b/README.md @@ -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 \ No newline at end of file