React Scrollview
Scrollview for React
Scrollview for React
Scrollview for React
Create scrollable layouts with the help of the scrollview component.
The scrollable elements can house content of any type, size or depth. Use it for paging or just a simple list of items users need to scroll through.
Shipping with useful features for creating horizontally scrollable layouts:
- Usage on mobile and desktop
- Touch and mouse interaction supported
- Compatible with other components, like cards, listviews
- Paging & variable width items
- Snap to items or freeform scrolling
- Multiple theme support
- Liquid or fixed layout
Scrollview demos available for other frameworks.
Viewing demos & code for
Scrollview - Paging
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
class Track extends React.Component {
render() {
return <li data-icon="play" data-icon-align="right"><img src={this.props.item.img} />
<h4>{this.props.item.title}</h4>
<p>{this.props.item.artist}</p>
</li>;
}
}
class App extends React.Component {
categories = [
{ id: 'pop', name: 'Pop' },
{ id: 'rock', name: 'Rock' },
{ id: 'jazz', name: 'Jazz' },
{ id: 'piano', name: 'Piano' },
{ id: 'electric', name: 'Electric' }
];
data = {
pop: [
{ id: 1, img: 'https://img.mobiscroll.com/demos/paging/Adele_1x.png', title: 'Hello', artist: 'Adele' },
],
rock: [
{ id: 20, img: 'https://img.mobiscroll.com/demos/paging/Elle_King_1x.png', title: 'Ex\'s & Oh\'s', artist: 'Elle King' },
],
jazz: [
{ id: 35, img: 'https://img.mobiscroll.com/demos/paging/Jeff_Lorber_1x.png', title: 'Get Up', artist: 'Jeff Lorber Fusion' },
],
piano: [
{ id: 50, img: 'https://img.mobiscroll.com/demos/paging/Rachmaninoff_1x.png', title: 'Etudes Tableaux', artist: 'Rachmaninoff' },
],
electric: [
{ id: 60, img: 'https://img.mobiscroll.com/demos/paging/Major-Lazer_1x.png', title: 'Lean On', artist: 'Major Lazer & DJ Snake Featuring M0' },
]
};
constructor(props) {
super(props);
this.state = {
selectedCategory: 'pop'
};
}
setCategory = (category) => {
this.setState({
selectedCategory: category.id
});
}
onAnimationStart = (event, inst) => {
const selectedIndex = -(event.destinationX / inst.contWidth);
const selectedCategory = this.categories[selectedIndex].id;
if (selectedCategory !== this.state.selectedCategory) {
this.setState({ selectedCategory });
}
}
shouldComponentUpdate = (nextProps, nextState) => {
if (nextState.selectedCategory != this.state.selectedCategory) {
this.refs.contentView.instance.navigate(nextState.selectedCategory);
return false;
}
return true;
}
render() {
return (
<div style={{height:'100%'}}>
<mobiscroll.TabNav ref="categoryNav">
{this.categories.map((category) => {
return <mobiscroll.NavItem key={category.id}
id={category.id}
selected={category.id == this.state.selectedCategory}
onClick={this.setCategory.bind(this, category)}
>
{category.name}
</mobiscroll.NavItem>
})}
</mobiscroll.TabNav>
<div className="md-paging">
<mobiscroll.ScrollView
ref="contentView"
className="md-content"
layout={1}
paging={true}
threshold={15}
cssClass="md-page"
onAnimationStart={this.onAnimationStart}
>
{this.categories.map((category) => {
return <div key={category.id} className={'md-'+ category.id} data-id={category.id}>
<mobiscroll.Listview
itemType={Track}
data={this.data[category.id]}
className="md-list-cont"
swipe={false}
striped={true}
enhance={true}
/>
</div>;
})}
</mobiscroll.ScrollView>
</div>
</div>
);
}
}
<div id="content" style="height:100%"></div>
body,
mbsc-page>.mbsc-page {
margin: 0;
padding: 0;
height: 100%;
overflow: visible;
}
.md-paging,
.md-paging>div,
.md-paging .md-page {
height: 100%;
padding: 0;
overflow: hidden;
}
.md-paging .md-list-cont,
.md-paging .mbsc-scv-item>.mbsc-lv-cont {
-webkit-box-flex: 1;
-webkit-flex: 1 auto;
-ms-flex: 1 auto;
flex: 1 auto;
overflow: auto;
-webkit-overflow-scrolling: touch;
}
.md-paging .mbsc-lv-img {
pointer-events: none;
border-radius: 2.8em;
height: 2.8em;
}
Scrollview - Cards
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
class AppItem extends React.Component {
render = () => {
var app = this.props.app;
return <mobiscroll.Card theme="" themeVariant="" lang="">
<mobiscroll.CardContent>
<img className="md-img" src={app.image} draggable="false" />
<mobiscroll.CardTitle>{app.title}</mobiscroll.CardTitle>
<mobiscroll.CardSubtitle>{app.dev}</mobiscroll.CardSubtitle>
<div className="md-rank">{app.rank}<span className="mbsc-ic mbsc-ic-star3"></span></div>
</mobiscroll.CardContent>
</mobiscroll.Card>;
}
}
class App extends React.Component {
render = () => {
return <div className="md-cards">
<div className="md-card-cont">
<h3>New & Updated Games</h3>
<mobiscroll.ScrollView className="demo-card" layout="fixed" itemWidth={134} snap={false} theme="" themeVariant="" lang="">
{this.props.newGames.map(function(app) {
return <AppItem app={app} key={app.id} />;
})}
</mobiscroll.ScrollView>
<h3>Media & Video Apps</h3>
<mobiscroll.ScrollView className="demo-card" layout="fixed" itemWidth={134} snap={false} theme="" themeVariant="" lang="">
{this.props.mediaVideo.map(function(app) {
return <AppItem app={app} key={app.id} />;
})}
</mobiscroll.ScrollView>
<h3>New & Updated Apps</h3>
<mobiscroll.ScrollView className="demo-card" layout="fixed" itemWidth={134} snap={false} theme="" themeVariant="" lang="">
{this.props.newUpdated.map(function(app) {
return <AppItem app={app} key={app.id} />;
})}
</mobiscroll.ScrollView>
</div>
</div>;
}
static defaultProps = {
newGames: [{
id: 1,
image: 'https://img.mobiscroll.com/demos/worms3.png',
title: 'Worms 3',
dev: 'Team 17 Digital Limited',
rank: 4.2
}, {
id: 2,
image: 'https://img.mobiscroll.com/demos/candycrush.png',
title: 'Candy Crush Saga',
dev: 'King',
rank: 4.3
}, {
id: 3,
image: 'https://img.mobiscroll.com/demos/angrybirds.png',
title: 'Angry Birds',
dev: 'Rovino',
rank: 4.4
}, {
id: 4,
image: 'https://img.mobiscroll.com/demos/nfs.png',
title: 'Need for Speed™ No Limits',
dev: 'ELECTRONIC ARTS',
rank: 4.3
}, {
id: 5,
image: 'https://img.mobiscroll.com/demos/heartstone.png',
title: 'Hearthstone',
dev: 'Blizzard Entertainment Inc.',
rank: 4.2
}, {
id: 6,
image: 'https://img.mobiscroll.com/demos/fruitninja.png',
title: 'Fruit Ninja',
dev: 'Halfbrick Studios',
rank: 4.3
}, {
id: 7,
image: 'https://img.mobiscroll.com/demos/subwaysurf.png',
title: 'Subway Surfers',
dev: 'Kiloo',
rank: 4.4
}, {
id: 8,
image: 'https://img.mobiscroll.com/demos/templerun.png',
title: 'Temple Run',
dev: 'Imangi Studios',
rank: 4.3
}, {
id: 9,
image: 'https://img.mobiscroll.com/demos/minecraft.png',
title: 'Minecraft: Pocket Edition',
dev: 'Mojang ',
rank: 4.4
}],
mediaVideo: [{
id: 1,
image: 'https://img.mobiscroll.com/demos/vlc.png',
title: 'VLC for Android',
dev: 'Videolabs ',
rank: 4.3
}, {
id: 2,
image: 'https://img.mobiscroll.com/demos/realplayer.png',
title: 'RealPlayer®',
dev: 'RealNetworks, Inc.',
rank: 4.3
}, {
id: 3,
image: 'https://img.mobiscroll.com/demos/motogal.png',
title: 'Motorola Gallery',
dev: 'Motorola Mobility LLC. ',
rank: 3.9
}, {
id: 4,
image: 'https://img.mobiscroll.com/demos/revesemov.png',
title: 'Reverse Movie FX',
dev: 'Bizo Mobile',
rank: 4.6
}, {
id: 5,
image: 'https://img.mobiscroll.com/demos/sure.png',
title: 'SURE Universal Remote',
dev: 'Tekoia Ltd.',
rank: 4.4
}, {
id: 6,
image: 'https://img.mobiscroll.com/demos/ringdriod.png',
title: 'Ringdroid',
dev: 'Ringdroid Team ',
rank: 4.4
}, {
id: 7,
image: 'https://img.mobiscroll.com/demos/funny.png',
title: 'Funny Camera - Video Booth Fun',
dev: 'Kiloo',
rank: 4.1
}, {
id: 8,
image: 'https://img.mobiscroll.com/demos/gif.png',
title: 'GIF Keyboard',
dev: 'IRiffsy, Inc.',
rank: 4.1
}, {
id: 9,
image: 'https://img.mobiscroll.com/demos/bs.png',
title: 'BSPlayer',
dev: 'BSPlayer media',
rank: 4.4
}, {
id: 10,
image: 'https://img.mobiscroll.com/demos/vac.png',
title: 'video audio cutter',
dev: 'mytechnosound ',
rank: 4.3
}],
newUpdated: [{
id: 1,
image: 'https://img.mobiscroll.com/demos/netflix.png',
title: 'Netflix',
dev: 'Netflix, Inc. ',
rank: 4.4
}, {
id: 2,
image: 'https://img.mobiscroll.com/demos/colorfy.png',
title: 'Colorfy - Coloring Book Free',
dev: 'Fun Games For Free',
rank: 4.7
}, {
id: 3,
image: 'https://img.mobiscroll.com/demos/wego.png',
title: 'Wego Flights & Hotels',
dev: 'Wego.com',
rank: 4.3
}, {
id: 4,
image: 'https://img.mobiscroll.com/demos/ali.png',
title: 'Alibaba.com B2B Trade App',
dev: 'Alibaba.com Hong Kong Limited ',
rank: 4.1
}, {
id: 5,
image: 'https://img.mobiscroll.com/demos/5k.png',
title: '5K Run: 5K Runner®',
dev: 'Fitness22',
rank: 4.4
}, {
id: 6,
image: 'https://img.mobiscroll.com/demos/nuzzelnws.png',
title: 'Nuzzel News',
dev: 'Nuzzel, Inc.',
rank: 4.3
}, {
id: 7,
image: 'https://img.mobiscroll.com/demos/solarsysexpl.png',
title: 'Solar System Explorer 3D',
dev: 'Neil Burlock',
rank: 4.5
}, {
id: 8,
image: 'https://img.mobiscroll.com/demos/elevate.png',
title: 'Elevate - Brain Training',
dev: 'Elevate Labs',
rank: 4.5
}, {
id: 9,
image: 'https://img.mobiscroll.com/demos/deezer.png',
title: 'Deezer Music',
dev: 'Deezer Mobile',
rank: 4.1
}]
};
}
<div id="content"></div>
.md-cards h3 {
padding: .5em;
margin: 0;
}
.md-img {
pointer-events: none;
border-radius: 8px;
}
.demo-card .mbsc-card-title {
font-size: 14px;
padding-top: 8px;
margin: 0;
}
.md-rank {
font-size: 12px;
position: absolute;
bottom: 8px;
left: 8px;
}
Scrollview - Layout
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
class App extends React.Component {
render() {
return (
<div className="md-layout">
<mobiscroll.FormGroup>
<mobiscroll.FormGroupTitle>Fixed width</mobiscroll.FormGroupTitle>
<mobiscroll.ScrollView
theme=""
themeVariant=""
layout="fixed"
itemWidth={80}
className="md-fixed"
>
<div className="bck-orange">1</div>
<div className="bck-red">2</div>
<div className="bck-green">3</div>
<div className="bck-yellow">4</div>
<div className="bck-blue">5</div>
<div className="bck-pink">6</div>
</mobiscroll.ScrollView>
</mobiscroll.FormGroup>
<mobiscroll.FormGroup>
<mobiscroll.FormGroupTitle>Variable width</mobiscroll.FormGroupTitle>
<mobiscroll.ScrollView
theme=""
themeVariant=""
className="md-variable"
>
<div className="bck-green variable-1">1</div>
<div className="bck-blue variable-2">2</div>
<div className="bck-orange variable-3">3</div>
<div className="bck-red variable-4">4</div>
<div className="bck-pink variable-5">5</div>
<div className="bck-yellow variable-6">6</div>
</mobiscroll.ScrollView>
</mobiscroll.FormGroup>
<mobiscroll.FormGroup>
<mobiscroll.FormGroupTitle>Paging</mobiscroll.FormGroupTitle>
<mobiscroll.ScrollView
theme=""
themeVariant=""
layout={3}
paging={true}
className="md-pages"
>
<div className="bck-pink">1</div>
<div className="bck-yellow">2</div>
<div className="bck-red">3</div>
<div className="bck-green">4</div>
<div className="bck-blue">5</div>
<div className="bck-orange">6</div>
</mobiscroll.ScrollView>
</mobiscroll.FormGroup>
<mobiscroll.FormGroup>
<mobiscroll.FormGroupTitle>Full page</mobiscroll.FormGroupTitle>
<mobiscroll.ScrollView
theme=""
themeVariant=""
layout={1}
paging={true}
className="md-fullpage"
>
<div className="bck-blue">1</div>
<div className="bck-pink">2</div>
<div className="bck-green">3</div>
<div className="bck-orange">4</div>
<div className="bck-red">5</div>
<div className="bck-yellow">6</div>
</mobiscroll.ScrollView>
</mobiscroll.FormGroup>
</div>
);
}
}
<div id="content"></div>
.bck-orange {
background: #ff9800;
}
.bck-red {
background: #f4511e;
}
.bck-green {
background: #afb42b;
}
.bck-yellow {
background: #ffc400;
}
.bck-blue {
background: #64b5f6;
}
.bck-pink {
background: #f48fb1;
}
.md-layout .mbsc-scv-item {
color: #fff;
font-weight: bold;
text-align: center;
}
.md-layout .mbsc-scv-c {
margin: 10px 0;
}
.variable-1 {
width: 60px;
height: 60px;
}
.variable-2 {
width: 80px;
height: 80px;
}
.variable-3 {
width: 70px;
height: 70px;
}
.variable-4 {
width: 50px;
height: 50px;
}
.variable-5 {
width: 100px;
height: 100px;
}
.variable-6 {
width: 40px;
height: 40px;
}
.md-fixed .mbsc-scv-item {
height: 80px;
margin: 0 10px;
}
.md-variable .mbsc-scv-item {
margin: auto 10px;
}
.md-pages .mbsc-scv-item {
height: 80px;
}
.md-fullpage .mbsc-scv-item {
height: 630px;
font-size: 28px;
}
Scrollview - RTL Support
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
mobiscroll.settings = {
lang: '',
theme: '',
themeVariant: ''
};
class App extends React.Component {
render() {
return (
<mobiscroll.Form rtl={true} className="md-layout">
<mobiscroll.FormGroup>
<mobiscroll.FormGroupTitle>Fixed width</mobiscroll.FormGroupTitle>
<mobiscroll.ScrollView
layout="fixed"
itemWidth={80}
className="md-fixed"
rtl={true}
>
<div className="bck-orange">1</div>
<div className="bck-red">2</div>
<div className="bck-green">3</div>
<div className="bck-yellow">4</div>
<div className="bck-blue">5</div>
<div className="bck-pink">6</div>
</mobiscroll.ScrollView>
</mobiscroll.FormGroup>
<mobiscroll.FormGroup>
<mobiscroll.FormGroupTitle>Variable width</mobiscroll.FormGroupTitle>
<mobiscroll.ScrollView
className="md-variable"
rtl={true}
>
<div className="bck-green variable-1">1</div>
<div className="bck-blue variable-2">2</div>
<div className="bck-orange variable-3">3</div>
<div className="bck-red variable-4">4</div>
<div className="bck-pink variable-5">5</div>
<div className="bck-yellow variable-6">6</div>
</mobiscroll.ScrollView>
</mobiscroll.FormGroup>
<mobiscroll.FormGroup>
<mobiscroll.FormGroupTitle>Paging</mobiscroll.FormGroupTitle>
<mobiscroll.ScrollView
layout={3}
paging={true}
className="md-pages"
rtl={true}
>
<div className="bck-pink">1</div>
<div className="bck-yellow">2</div>
<div className="bck-red">3</div>
<div className="bck-green">4</div>
<div className="bck-blue">5</div>
<div className="bck-orange">6</div>
</mobiscroll.ScrollView>
</mobiscroll.FormGroup>
<mobiscroll.FormGroup>
<mobiscroll.FormGroupTitle>Full page</mobiscroll.FormGroupTitle>
<mobiscroll.ScrollView
layout={1}
paging={true}
className="md-fullpage"
rtl={true}
>
<div className="bck-blue">1</div>
<div className="bck-pink">2</div>
<div className="bck-green">3</div>
<div className="bck-orange">4</div>
<div className="bck-red">5</div>
<div className="bck-yellow">6</div>
</mobiscroll.ScrollView>
</mobiscroll.FormGroup>
</mobiscroll.Form>
);
}
}
<div id="content"></div>
.bck-orange {
background: #ff9800;
}
.bck-red {
background: #f4511e;
}
.bck-green {
background: #afb42b;
}
.bck-yellow {
background: #ffc400;
}
.bck-blue {
background: #64b5f6;
}
.bck-pink {
background: #f48fb1;
}
.md-layout .mbsc-scv-item {
color: #fff;
font-weight: bold;
text-align: center;
}
.md-layout .mbsc-scv-c {
margin: 10px 0;
}
.variable-1 {
width: 60px;
height: 60px;
}
.variable-2 {
width: 80px;
height: 80px;
}
.variable-3 {
width: 70px;
height: 70px;
}
.variable-4 {
width: 50px;
height: 50px;
}
.variable-5 {
width: 100px;
height: 100px;
}
.variable-6 {
width: 40px;
height: 40px;
}
.md-fixed .mbsc-scv-item {
height: 80px;
margin: 0 10px;
}
.md-variable .mbsc-scv-item {
margin: auto 10px;
}
.md-pages .mbsc-scv-item {
height: 80px;
}
.md-fullpage .mbsc-scv-item {
height: 630px;
font-size: 28px;
}
Scrollview - Event handlers
EVENTS FIRED:
import mobiscroll from '@mobiscroll/react';
import '@mobiscroll/react/dist/css/mobiscroll.min.css';
class App extends React.Component {
onInit = (event, inst) => {
// Your custom event handler goes here
}
onMarkupReady = (event, inst) => {
// Your custom event handler goes here
}
onMove = (event, inst) => {
// Your custom event handler goes here
}
onItemTap = (event, inst) => {
// Your custom event handler goes here
}
onAnimationStart = (event, inst) => {
// Your custom event handler goes here
}
onAnimationEnd = (event, inst) => {
// Your custom event handler goes here
}
onGestureStart = (event, inst) => {
// Your custom event handler goes here
}
onGestureEnd = (event, inst) => {
// Your custom event handler goes here
}
render() {
return (
<mobiscroll.FormGroup>
<mobiscroll.FormGroupTitle>Paging</mobiscroll.FormGroupTitle>
<mobiscroll.ScrollView
theme=""
themeVariant=""
layout={1}
paging={true}
onInit={this.onInit}
onMarkupReady={this.onMarkupReady}
onMove={this.onMove}
onItemTap={this.onItemTap}
onAnimationStart={this.onAnimationStart}
onAnimationEnd={this.onAnimationEnd}
onGestureStart={this.onGestureStart}
onGestureEnd={this.onGestureEnd}
className="md-scrollview-events"
>
<div className="bck-green">1</div>
<div className="bck-yellow">2</div>
<div className="bck-pink">3</div>
<div className="bck-orange">4</div>
<div className="bck-blue">5</div>
<div className="bck-red">6</div>
</mobiscroll.ScrollView>
</mobiscroll.FormGroup>
);
}
}
<div id="content"></div>
.bck-orange {
background: #ff9800;
}
.bck-red {
background: #f4511e;
}
.bck-green {
background: #afb42b;
}
.bck-yellow {
background: #ffc400;
}
.bck-blue {
background: #64b5f6;
}
.bck-pink {
background: #f48fb1;
}
.md-scrollview-events .mbsc-scv-item {
height: 200px;
color: #fff;
font-weight: bold;
text-align: center;
}
Looking for something you didn't see or have a sales question?
Ask us about it, we're here to help.
Component license
Purchase component licenses if you are looking for specific funcionality.
All
Framework license
Get all 36 components, including
Framework license
Get all 36 components, including
- Use it when building with plain and simple JS
- Compatible with vanilla JS app or frameworks like Vue
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with jQuery and jQuery Mobile
- Enjoy the familiar API if you already use jQuery
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with Angular JS and Ionic 1
- For web and mobile apps based on Angular 1.x
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with Angular and Ionic 2/3/4
- Visual Studio and VS Code integration
- Royalty-free commercial usage
- Technical support is included with the license
- Use it when building with React JS
- Collection of UI components for web and mobile
- Royalty-free commercial usage
- Technical support is included with the license
Framework license
Select the development framework you are using. Get all 36 components with the license.
- Use it when building with plain and simple JS
- Compatible with vanilla JS app or frameworks like Vue
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with jQuery and jQuery Mobile
- Enjoy the familiar API if you already use jQuery
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with Angular JS and Ionic 1
- For web and mobile apps based on Angular 1.x
- Royalty-free commercial usage
- Technical support is included with the license
- Use it with Angular and Ionic 2/3/4
- Visual Studio and VS Code integration
- Royalty-free commercial usage
- Technical support is included with the license
- Use it when building with React JS
- Collection of UI components for web and mobile
- Royalty-free commercial usage
- Technical support is included with the license
Select the framework you are interested in
Use Javascript when building with plain and simple JS.
Use jQuery when you have jQuery already included or if you are building with jQuery Mobile.
Use AngularJS when building with Angular 1.x or Ionic 1.
Use Angular when building with Angular 2/4/5/6/7/8/9 or Ionic 2/3/4.
Use it when you are building your app or website with React.
Do you need additional support seats?
The license comes with one support seat. ( +$100/seat )
Add the source code?
What framework are you using?
We have to set you up with a trial for this to run 👍
Step 1.Install the Mobiscroll CLI from npm
$ npm install -g @mobiscroll/cli
The CLI makes configuring your apps super simple 👍
Step 2.Run the following command in the root folder of your Ionic project
$ mobiscroll config ionic
$ mobiscroll config ionic --lite
You will be prompted to log in with your mobiscroll account. Set your password here
Create an Ionic 3 & Mobiscroll starter with the CLI:
Run this command for Ionic 4 & Mobiscroll starter:
Step 3.Copy the code into your app.
Step 4.Run ionic serve in the root folder of your app 🎉
$ ionic serve
And voilà, everything should be running smoothly.
Step 1.Install the Mobiscroll CLI from npm
$ npm install -g @mobiscroll/cli
The CLI makes configuring your apps super simple 👍
Step 2.Run the following command in the root folder of your Angular project
$ mobiscroll config angular
$ mobiscroll config angular --lite
You will be prompted to log in with your mobiscroll account. Set your password here
Step 3.Copy the code into your app. HTML goes into the markup, TS into Typescript.
Step 4.Run ng serve in the root folder of your app 🎉
$ ng serve
And voilà, everything should be running smoothly.
Extract the zip file and run the project like any Ionic app. Make sure to have Ionic CLI installed and open the terminal in the app root folder.
$ npm install
$ ionic serve
Let us know if we can help and enjoy!
Your password has been changed!
Everything is set up so that you can dig in right away and start exploring.
We have set up a trial so that you can try the demos locally.
Extract the zip file and open the demo in your favorite browser.
To install Mobiscroll in your project
follow instructions from this page.
Let us know if we can help and enjoy! 👍
Please extract the zip file and run the project like any Angular CLI app.
Make sure to have the Angular CLI installed.
For installation and usage, extract the zip file and open a terminal window and follow these steps.
$ npm install
$ ng serve --open
Let us know if we can help and enjoy! 👍
Everything is set up so that you can dig in right away and start exploring.
We have set up a trial so that you can try the demos locally.
The easiest way to get started is to follow the installation steps and by
grabbing the code directly from the demo page. Let us know if we can help and enjoy!
You'll find a fully functional Kitchen-sink Ionic app in the zip file.
Everything is set up so that you can dig in right away and start exploring.
We have set up a trial so that you can try the demos locally.
The demos are using Babel's in-browser ES6 and JSX transformer.
Extract the zip file and open the demo in your browser. To install Mobiscroll in your project
follow instructions from this page.
Let us know if we can help and enjoy! 👍