All Projects → CaiJingLong → flutter_vertical_marquee

CaiJingLong / flutter_vertical_marquee

Licence: MIT License
flutter vertical marquee

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to flutter vertical marquee

dashy
🚀 A self-hostable personal dashboard built for you. Includes status-checking, widgets, themes, icon packs, a UI editor and tons more!
Stars: ✭ 7,103 (+47253.33%)
Mutual labels:  mit
LAB
MIT IT Lab Repository
Stars: ✭ 23 (+53.33%)
Mutual labels:  mit
uuix
A tiny (<1KB) and fast UUID (v4) generator for Crystal
Stars: ✭ 17 (+13.33%)
Mutual labels:  mit
magento-ngrok
Magento 2 module for ngrok.io service support
Stars: ✭ 45 (+200%)
Mutual labels:  mit
documentation
Pterodactyl's documentation is open source! This repository contains the documentation for installing and updating both the panel and the daemon.
Stars: ✭ 99 (+560%)
Mutual labels:  mit
zork
Full C++-17 port of the 616-point version of Zork from MIT circa 1978-1981
Stars: ✭ 16 (+6.67%)
Mutual labels:  mit
MusicTransformer-Pytorch
MusicTransformer written for MaestroV2 using the Pytorch framework for music generation
Stars: ✭ 106 (+606.67%)
Mutual labels:  mit
svelte-credit-card
A svelte component to render a credit card 💳
Stars: ✭ 30 (+100%)
Mutual labels:  mit
loopback-component-migrate
Migration framework for loopback
Stars: ✭ 43 (+186.67%)
Mutual labels:  mit
lectures and talks
Collection of lectures and talks I've given on Computer Vision and Deep Learning
Stars: ✭ 29 (+93.33%)
Mutual labels:  mit
bullshit-detector
🔍 Chráňte vašich blízkych pred nedôveryhodným 🇸🇰 a 🇨🇿 obsahom
Stars: ✭ 24 (+60%)
Mutual labels:  mit
FOTextLayout
实现文字横竖向切换,实现各种文字的排版,可以某种程度上替代UILabel。
Stars: ✭ 36 (+140%)
Mutual labels:  vertical
mit-phd-thesis
MIT Ph.D. Thesis in LaTeX
Stars: ✭ 52 (+246.67%)
Mutual labels:  mit
MIT6.824-2021
4 labs + 2 challenges + 4 docs
Stars: ✭ 594 (+3860%)
Mutual labels:  mit
edX-6.00.2x-Introduction-to-Computational-Thinking-and-Data-Science
MIT edX 6.00.2x Introduction to Computational Thinking and Data Science problem sets code
Stars: ✭ 62 (+313.33%)
Mutual labels:  mit
Nancy
Lightweight, low-ceremony, framework for building HTTP based services on .Net and Mono
Stars: ✭ 7,170 (+47700%)
Mutual labels:  mit
marquee widget
A Flutter widget that scrolls text widget and other widget
Stars: ✭ 21 (+40%)
Mutual labels:  marquee
summaly
🔍 Get a summary of any web page
Stars: ✭ 18 (+20%)
Mutual labels:  mit
react-native-marquee
React Native Marquee Text Component
Stars: ✭ 101 (+573.33%)
Mutual labels:  marquee
AutoScrollTextView
android 上下滚动播放与走马灯效果结合
Stars: ✭ 27 (+80%)
Mutual labels:  marquee

flutter_vertical_marquee

pub package

screenshot

image

install

latest_version: pub package

yaml

dependencies:
  flutter:
    sdk: flutter

  ...
  # marquee
  flutter_vertical_marquee: $latest_version

import in dart:

import 'package:flutter_vertical_marquee/flutter_vertical_marquee.dart';

build widget

  List<String> _tipMarqueeList = [];

  _initMarquee() {
    _tipMarqueeList.clear();
    _tipMarqueeList.addAll(["test1", "test2"]);
  }

  Widget _buildMarquee() {
    _initMarquee();
    var controller = MarqueeController();
    return GestureDetector(
      child: Container(
        height: 40.0,
        color: Colors.lightBlueAccent.shade100,
        child: Marquee(
          textList: _tipMarqueeList, // List<Text>, textList and textSpanList can only have one of code.
          textSpanList: // List<TextSpan> text, textList and textSpanList can only have one of code.
          fontSize: 14.0, // text size
          scrollDuration: Duration(seconds: 1), // every scroll duration
          stopDuration: Duration(seconds: 3), //every stop duration
          tapToNext: false, // tap to next
          textColor: Colors.black, // text color
          controller: controller, // the controller can get the position
        ),
      ),
      onTap: () {
        print(controller.position); // get the position
      },
    );
  }

or see example tab

call me

email [email protected]

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].