All Projects → magnatronus → oscilloscope

magnatronus / oscilloscope

Licence: Apache-2.0 license
A Flutter package that can display an Oscilloscope type graphical display

Programming Languages

dart
5743 projects
HTML
75241 projects
shell
77523 projects
swift
15916 projects
java
68154 projects - #9 most used programming language
kotlin
9241 projects
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to oscilloscope

getx snippets extension
An extension to accelerate the process of developing applications with flutter, aimed at everyone using the GetX package.
Stars: ✭ 142 (+735.29%)
Mutual labels:  flutter-plugin
oscilloscope.js
A small javascript plugin to create an oscilloscope of an audio-context
Stars: ✭ 28 (+64.71%)
Mutual labels:  oscilloscope
lang table
lang_table is a dart plugin to generate string files from a source. Use a table to manage all multi-language resources. Inspired by fetch-mobile-localization-from-airtable
Stars: ✭ 17 (+0%)
Mutual labels:  flutter-plugin
Web Vuw
A Web View for flutter
Stars: ✭ 40 (+135.29%)
Mutual labels:  flutter-plugin
appmetrica sdk
A Flutter plugin for Yandex AppMetrica SDK, a marketing platform for app install attribution, app analytics, and push campaigns.
Stars: ✭ 15 (-11.76%)
Mutual labels:  flutter-plugin
flutter nearby connections
Flutter plugin support peer-to-peer connectivity and the discovery of nearby devices for Android vs IOS
Stars: ✭ 51 (+200%)
Mutual labels:  flutter-plugin
flutter vibration
Handle vibration on iOS and Android in Flutter apps
Stars: ✭ 146 (+758.82%)
Mutual labels:  flutter-plugin
flutter launch whatsapp
Plugin flutter to launch whatsapp
Stars: ✭ 46 (+170.59%)
Mutual labels:  flutter-plugin
flutter-nfc
Flutter Android plugin for NFC
Stars: ✭ 14 (-17.65%)
Mutual labels:  flutter-plugin
flutter opencv
OpenCV bindings plugin for Flutter apps [work in progress]
Stars: ✭ 81 (+376.47%)
Mutual labels:  flutter-plugin
flutter-crisp
Flutter plugin for Crisp Chat
Stars: ✭ 18 (+5.88%)
Mutual labels:  flutter-plugin
wavebin
∿ Oscilloscope waveform capture viewer and converter.
Stars: ✭ 31 (+82.35%)
Mutual labels:  oscilloscope
nepali date picker
Material Style Date Picker with Bikram Sambat(Nepali) Calendar Support. Supports both Android and ios.
Stars: ✭ 30 (+76.47%)
Mutual labels:  flutter-plugin
music visualizer
Shader viewer / music visualizer for Windows and Linux
Stars: ✭ 137 (+705.88%)
Mutual labels:  oscilloscope
flutter example
flutter code,flutter-banner,flutter-codekk,flutter-panda,flutter_tab
Stars: ✭ 94 (+452.94%)
Mutual labels:  flutter-plugin
flutter-moum
Flutter를 좋아하는 사람들이 모여서 Flutter 관련 지식과 기술을 모음📚
Stars: ✭ 67 (+294.12%)
Mutual labels:  flutter-plugin
flutter-devicelocale
A Flutter package to read and return the set device locales
Stars: ✭ 45 (+164.71%)
Mutual labels:  flutter-plugin
SidWizPlus
Oscilloscope view audio renderer originally based on SidWiz
Stars: ✭ 94 (+452.94%)
Mutual labels:  oscilloscope
flutter-elinux-plugins
Flutter plugins for embedded Linux (eLinux)
Stars: ✭ 21 (+23.53%)
Mutual labels:  flutter-plugin
reactive state
An easy to understand reactive state management solution for Flutter.
Stars: ✭ 19 (+11.76%)
Mutual labels:  flutter-plugin

oscilloscope widget package for Flutter

Oscilloscope is a graphical display similar to the trace on an oscilloscope that will display values as it scrolls across the screen. The widget uses a List as the source of the data to display and will scale the information to fit the display. Take a look at the example to see how it can be used.

Each time a value is added to the dataset another point is plotted on the trace, this trace will extends from left to right across the screen until it reaches the end. At this point the trace will then scroll to show new values.

The display can be customised using the following values:

  • backgroundColor - the default is Colors.black
  • traceColor - the default color is Colors.white
  • margin - the default is EdgeInsets.all(10.0)
  • strokeWidth - the default width is 2.0
  • showYAxis - show or hide a line representing the 0 yAxis (default is false)
  • yAxisColor - if the yAxis is set for display it will show in this color (default is Colors.white)

The other settings are

  • dataSet - this is the data that is used to generate the trace
  • yAxisMin - an indicator to define the minimum value found in the dataSet (default 0.0)
  • yAxisMax - an indicator to define the maximum value found in the dataSet (default 1.0)

yAxisMin and yAxisMax are used by the widget to determine the scaling factor so all data values are displayed. These values can be altered to modify the data display scale.

Getting Started

For package install see here.

For help getting started with Flutter, view the online documentation.

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