All Projects → fluttercommunity → page_turn

fluttercommunity / page_turn

Licence: MIT License
Page Turn Widget - Add a page turn effect to widgets in your app. Maintainer: @rodydavis

Programming Languages

dart
5743 projects
swift
15916 projects
HTML
75241 projects
kotlin
9241 projects
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to page turn

stucco
An experimental adaptive UI toolkit.
Stars: ✭ 31 (-79.47%)
Mutual labels:  widgets
widgets
💸 Web3 Payments with any token. DePay simplifies and improves Web3 Payments with the power of DeFi. Accept any token with on-the-fly conversion with state-of-the-art widgets.
Stars: ✭ 32 (-78.81%)
Mutual labels:  widgets
neumorphic
Flutter Neumorphic widgets that I have experimented and created
Stars: ✭ 117 (-22.52%)
Mutual labels:  widgets
dotfiles
My awesomewm dotfiles for awesome people! ✨
Stars: ✭ 1,764 (+1068.21%)
Mutual labels:  widgets
CleanUI
Android library to create beautiful, clean and minimal UIs.
Stars: ✭ 19 (-87.42%)
Mutual labels:  widgets
jquery-alphaindex
jQuery plugin to create alphabetical indexes for your lists
Stars: ✭ 12 (-92.05%)
Mutual labels:  widgets
PiHoleWidgets
PiHole Widgets using JAVAFX
Stars: ✭ 67 (-55.63%)
Mutual labels:  widgets
Examples Gtkmm
Shows how to use Gtkmm controls by programming code (c++17).
Stars: ✭ 23 (-84.77%)
Mutual labels:  widgets
admin-sticky-widget-areas
A simple WordPress plugin to make the widget areas on the right side at /wp-admin/widgets.php sticky.
Stars: ✭ 22 (-85.43%)
Mutual labels:  widgets
jupyter rfb
Remote Frame Buffer for Jupyter
Stars: ✭ 21 (-86.09%)
Mutual labels:  widgets
juxtapose
A flutter widget for comparing two stacked widgets by dragging a slider thumb to reveal either sides of the slider horizontally or vertically.
Stars: ✭ 75 (-50.33%)
Mutual labels:  widgets
view
Yii view rendering library
Stars: ✭ 42 (-72.19%)
Mutual labels:  widgets
SPPerspective
Widgets iOS 14 animation with 3D and dynamic shadow. Customisable transform and duration.
Stars: ✭ 271 (+79.47%)
Mutual labels:  widgets
cumulocity-app-builder
The Application Builder for Cumulocity provides a simple, coding-free way to create new applications inside Cumulocity. Application Builder is an open-source tool for you to create web applications in a no-code environment. Created by Global Presales.
Stars: ✭ 18 (-88.08%)
Mutual labels:  widgets
ipylab
Control JupyterLab from Python Notebooks with Jupyter Widgets 🧪 ☢️ 🐍
Stars: ✭ 101 (-33.11%)
Mutual labels:  widgets
Kuper
Free, feature-rich, easily customizable Android dashboard for widgets apps with Zooper widgets and/or Kustom assets (Widgets, Wallpapers and Komponents)
Stars: ✭ 114 (-24.5%)
Mutual labels:  widgets
cmv-contrib-widgets
User contributed widgets for CMV
Stars: ✭ 36 (-76.16%)
Mutual labels:  widgets
Examples Win32
Shows how to use Win32 controls by programming code (c++17).
Stars: ✭ 22 (-85.43%)
Mutual labels:  widgets
SdfFontDesigner
Offline font tuning/bitmap generation via shaders
Stars: ✭ 56 (-62.91%)
Mutual labels:  widgets
maxLibQt
A collection of C++ classes and QtQuick QML components for use with the Qt framework.
Stars: ✭ 18 (-88.08%)
Mutual labels:  widgets

Flutter Community: page_turn

Page Turn Widget

pub package github pages

Add a page turn effect to widgets in your app.

Created by Simon Lightfoot @slightfoot

Screenshots

info info info

Example

import 'package:flutter/material.dart';

import 'package:page_turn/page_turn.dart';

import '../common/index.dart';

class HomeScreen extends StatefulWidget {
  const HomeScreen({
    Key key,
  }) : super(key: key);

  @override
  _HomeScreenState createState() => _HomeScreenState();
}

class _HomeScreenState extends State<HomeScreen> {
  final _controller = GlobalKey<PageTurnState>();
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: PageTurn(
        key: _controller,
        backgroundColor: Colors.white,
        showDragCutoff: false,
        lastPage: Container(child: Center(child: Text('Last Page!'))),
        children: <Widget>[
          for (var i = 0; i < 20; i++) AlicePage(page: i),
        ],
      ),
      floatingActionButton: FloatingActionButton(
        child: Icon(Icons.search),
        onPressed: () {
          _controller.currentState.goToPage(2);
        },
      ),
    );
  }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].