The reference implementation of Sass, written in Dart.

Overview

A Dart implementation of Sass. Sass makes CSS fun again.

Sass logo npm statistics Pub version
GitHub actions build status
@SassCSS on Twitter
stackoverflow
Gitter

Using Dart Sass

There are a few different ways to install and run Dart Sass, depending on your environment and your needs.

From Chocolatey or Scoop (Windows)

If you use the Chocolatey package manager or the Scoop package manager for Windows, you can install Dart Sass by running

choco install sass

or

scoop install sass

That'll give you a sass executable on your command line that will run Dart Sass. See the CLI docs for details.

From Homebrew (macOS)

If you use the Homebrew package manager for macOS, you can install Dart Sass by running

brew install sass/sass/sass

That'll give you a sass executable on your command line that will run Dart Sass.

Standalone

You can download the standalone Dart Sass archive for your operating system—containing the Dart VM and the snapshot of the executable—from the GitHub release page. Extract it, add the directory to your path, restart your terminal, and the sass executable is ready to run!

From npm

Dart Sass is available, compiled to JavaScript, as an npm package. You can install it globally using npm install -g sass which will provide access to the sass executable. You can also add it to your project using npm install --save-dev sass. This provides the executable as well as a library:

var sass = require('sass');

sass.render({file: scss_filename}, function(err, result) { /* ... */ });

// OR

var result = sass.renderSync({file: scss_filename});

See below for details on Dart Sass's JavaScript API.

From Pub

If you're a Dart user, you can install Dart Sass globally using pub global activate sass, which will provide a sass executable. You can also add it to your pubspec and use it as a library. We strongly recommend importing it with the prefix sass:

import 'package:sass/sass.dart' as sass;

void main(List<String> args) {
  print(sass.compile(args.first));
}

See the Dart API docs for details.

sass_api Package

Dart users also have access to more in-depth APIs via the sass_api package. This provides access to the Sass AST and APIs for resolving Sass loads without running a full compilation. It's separated out into its own package so that it can increase its version number independently of the main sass package.

From Source

Assuming you've already checked out this repository:

  1. Install Dart. If you download an archive manually rather than using an installer, make sure the SDK's bin directory is on your PATH.

  2. In this repository, run pub get. This will install Dart Sass's dependencies.

  3. Run dart bin/sass.dart path/to/file.scss.

That's it!

JavaScript API

When installed via npm, Dart Sass supports a JavaScript API that's fully compatible with Node Sass (with a few exceptions listed below), with support for both the render() and renderSync() functions. See the Sass website for full API documentation!

Note however that renderSync() is more than twice as fast as render() due to the overhead of asynchronous callbacks. Both render() and renderSync() support the following options:

No support is intended for the following options:

  • precision. Dart Sass defaults to a sufficiently high precision for all existing browsers, and making this customizable would make the code substantially less efficient.

  • sourceComments. Source maps are the recommended way of locating the origin of generated selectors.

Why Dart?

Dart Sass has replaced Ruby Sass as the canonical implementation of the Sass language. We chose Dart because it presented a number of advantages:

  • It's fast. The Dart VM is highly optimized, and getting faster all the time (for the latest performance numbers, see perf.md). It's much faster than Ruby, and close to par with C++.

  • It's portable. The Dart VM has no external dependencies and can compile applications into standalone snapshot files, so we can distribute Dart Sass as only three files (the VM, the snapshot, and a wrapper script). Dart can also be compiled to JavaScript, which makes it easy to distribute Sass through npm, which the majority of our users use already.

  • It's easy to write. Dart is a higher-level language than C++, which means it doesn't require lots of hassle with memory management and build systems. It's also statically typed, which makes it easier to confidently make large refactors than with Ruby.

  • It's friendlier to contributors. Dart is substantially easier to learn than Ruby, and many Sass users in Google in particular are already familiar with it. More contributors translates to faster, more consistent development.

Compatibility Policy

For the most part, Dart Sass follows semantic versioning. We consider all of the following to be part of the versioned API:

  • The Sass language semantics implemented by Dart Sass.
  • The Dart API.
  • The JavaScript API.
  • The command-line interface.

Because Dart Sass has a single version that's shared across the Dart, JavaScript, and standalone distributions, this may mean that we increment the major version number when there are in fact no breaking changes for one or more distributions. However, we will attempt to limit the number of breaking changes we make and group them in as few releases as possible to minimize churn. We strongly encourage users to use the changelog for a full understanding of all the changes in each release.

There is one exception where breaking changes may be made outside of a major version revision. It is occasionally the case that CSS adds a feature that's incompatible with existing Sass syntax in some way. Because Sass is committed to full CSS compatibility, we occasionally need to break compatibility with old Sass code in order to remain compatible with CSS.

In these cases, we will first release a version of Sass that emits deprecation warnings for any stylesheets whose behavior will change. Then, at least three months after the release of a version with these deprecation warnings, we will release a minor version with the breaking change to the Sass language semantics.

Browser Compatibility

In general, we consider any change to Dart Sass's CSS output that would cause that CSS to stop working in a real browser to be a breaking change. However, there are some cases where such a change would have substantial benefits and would only negatively affect a small minority of rarely-used browsers. We don't want to have to block such a change on a major version release.

As such, if a change would break compatibility with less than 2% of the global market share of browser according to StatCounter GlobalStats, we may release a minor version of Dart Sass with that change.

Node.js Compatibility

We consider dropping support for a given version of Node.js to be a breaking change as long as that version is still supported by Node.js. This means that releases listed as Current, Active LTS, or Maintenance LTS according to the Node.js release page. Once a Node.js version is out of LTS, Dart Sass considers itself free to break support if necessary.

Behavioral Differences from Ruby Sass

There are a few intentional behavioral differences between Dart Sass and Ruby Sass. These are generally places where Ruby Sass has an undesired behavior, and it's substantially easier to implement the correct behavior than it would be to implement compatible behavior. These should all have tracking bugs against Ruby Sass to update the reference behavior.

  1. @extend only accepts simple selectors, as does the second argument of selector-extend(). See issue 1599.

  2. Subject selectors are not supported. See issue 1126.

  3. Pseudo selector arguments are parsed as <declaration-value>s rather than having a more limited custom parsing. See issue 2120.

  4. The numeric precision is set to 10. See issue 1122.

  5. The indented syntax parser is more flexible: it doesn't require consistent indentation across the whole document. See issue 2176.

  6. Colors do not support channel-by-channel arithmetic. See issue 2144.

  7. Unitless numbers aren't == to unit numbers with the same value. In addition, map keys follow the same logic as ==-equality. See issue 1496.

  8. rgba() and hsla() alpha values with percentage units are interpreted as percentages. Other units are forbidden. See issue 1525.

  9. Too many variable arguments passed to a function is an error. See issue 1408.

  10. Allow @extend to reach outside a media query if there's an identical @extend defined outside that query. This isn't tracked explicitly, because it'll be irrelevant when issue 1050 is fixed.

  11. Some selector pseudos containing placeholder selectors will be compiled where they wouldn't be in Ruby Sass. This better matches the semantics of the selectors in question, and is more efficient. See issue 2228.

  12. The old-style :property value syntax is not supported in the indented syntax. See issue 2245.

  13. The reference combinator is not supported. See issue 303.

  14. Universal selector unification is symmetrical. See issue 2247.

  15. @extend doesn't produce an error if it matches but fails to unify. See issue 2250.

  16. Dart Sass currently only supports UTF-8 documents. We'd like to support more, but Dart currently doesn't support them. See dart-lang/sdk#11744, for example.

Disclaimer: this is not an official Google product.

Comments
  • --watch is flaky

    --watch is flaky

    Hi,

    I got a new Mac recently so I thought I would use this as a reason to move from Ruby Sass to Dart Sass.

    The installation was all OK and it works in my projects, but I'm having an issue where after a certain number of SCSS changes (circa 20 or so) Sass stops working.

    The work around I have is just stopping the watch (ctrl + c) restarting it and then making a change to the file so it compiles.

    I never had this problem on Ruby Sass, so I wiped and re-installed Dart Sass, but it's still happening.

    I do have my editor (VS Code) set to auto-save, but as mentioned above the issue wasn't happening with Ruby Sass and I used auto-save in that version as well.

    Has anyone else had this issue / and or know how to fix it, instead of constantly having to stop the watch and re-compile?

    Many thanks

    bug CLI 
    opened by EmilyChews 31
  • HTML entities are replaced with the actual symbols in the compiled css

    HTML entities are replaced with the actual symbols in the compiled css

    🐛 bug report

    HTML entities are replaced with the actual symbols in the compiled css. And thus, the symbols show up garbled.

    For example: If I comple scss with a pseudo element with html entity like this:

    Source SCSS:

    @charset "UTF-8";
    #test:before { content: "\2713"; }
    

    Compiled css:

    @charset "UTF-8";
    #test:before {
      content: "✓";
    }
    

    The html entity '\2713' is replaced with the actual symbol '✓' in the complied css, and then, it's shown like this "e✓" on browsers.

    needs info 
    opened by mtskf 26
  • Add a --quiet-upstream flag

    Add a --quiet-upstream flag

    Most users only have the capacity to fix deprecation warnings in their own code, but they may end up using libraries that have their own deprecation warnings. We should add a --quiet-upstream flag (and similar flags for the Dart and JS APIs) to silence deprecation warnings emitted by upstream libraries (that is, libraries loaded through load paths and package: URLs).

    I think this flag should probably not silence warnings due to @warn, since libraries frequently use those to indicate that downstream users are using the library in an invalid or deprecated way.

    enhancement CLI 
    opened by nex3 26
  • Pre-Built Binaries for Apple Silicon?

    Pre-Built Binaries for Apple Silicon?

    Apologies if this has been asked; I did search!

    With the first Apple Silicon Macs about 30-45 days out, is there a plan to make the Mac pre-built downloads Universal binaries? I understand that I can try building Dart Sass on my own to support Apple Silicon, but I'd rather leave it to the experts if you're going to continue releasing pre-built binaries that support the Mac platform. Thanks!

    enhancement CLI 
    opened by bdkjones 25
  • Add an embeddable execution mode

    Add an embeddable execution mode

    It's desirable to be able to use Dart Sass from various different language environments, with functions and importers defined in the host language, while still getting the language semantics of Dart Sass and the performance of the Dart VM. We could theoretically expose the VM plus Dart Sass as a C API, but figuring out how to get that to build reliably (let alone efficiently) seems like a nightmare.

    A much easier solution would be to create an executable that uses stdin/stdout to allow a caller to define functions and importers. This would require defining a protocol of some sort—probably either JSON- or protobuf-based—for communication and for serializing Sass values.

    This should probably be in a separate package from Dart Sass proper, but that package doesn't exist yet so I'm filing this here for now.

    enhancement 
    opened by nex3 22
  • JS API: Support custom importers

    JS API: Support custom importers

    We need to support the node-sass API's importer option, which specifies custom importers that locate and load source files. Note that this may require the use of something like synchronize.js, since Dart Sass is entirely synchronous.

    enhancement JavaScript 
    opened by nex3 22
  • Issue with @extend, placeholders and @use

    Issue with @extend, placeholders and @use

    We're refactoring a large codebase from @import to @use and I noticed some strange errors with placeholders and placeholders extending placeholders. To illustrate the behaviour, I created a simplified repo:

    https://github.com/tuelsch/sass-playground

    The interesting file is src/placeholders.scss. As it is, the build fails (with npm start, the first build does not print the error to the console, but rather the out.css at root). But as soon as you comment out the %whatever placeholder, the build succeeds. What's even stranger, if you just move the declaration above the %placeholder declaration, the build succeeds as well.

    I don't get it. Is this a bug with sass or am I not supposed to use %placeholders in this specific way?

    needs info 
    opened by gfellerph 21
  • Error compiling bootstrap glyphicon, and font-awesome.

    Error compiling bootstrap glyphicon, and font-awesome.

    I am trying to compile bootstrap-sass or font-awesome-sass to normal css. The fonts are being added correctly however the '::after -> content ' attribute is messaged up completely.

    To check that its not on my end, I took the content of a working icon, and pasted it instead of the content that your compiler produced and it works fine.

    needs info 
    opened by yanivkalfa 20
  • Implement Index and a default file if directory given in import

    Implement Index and a default file if directory given in import

    Ref to: https://github.com/sass/sass/pull/2456

    I've not done Dart before so any help will be accepted.

    • [x] Signed Contributors (waiting for legal to approve)
    • [x] Rebase and remove extra commits

    See sass/sass-spec#1206

    opened by john681611 19
  • 1.23.0-module.beta.1 was mistakenly released under the `latest` dist-tag

    1.23.0-module.beta.1 was mistakenly released under the `latest` dist-tag

    ζ npm view sass@latest version
    1.23.0-module.beta.1
    

    If users install dart sass via npm install sass and use it along with sass-loader, sass-loader's version check will fail. https://github.com/webpack-contrib/sass-loader/blob/aa9b53b4d1c14117c4ca114a13cecb6e53b4e87a/src/getSassImplementation.js#L28-L31

    infrastructure 
    opened by sodatea 18
  • Problem since 1.40.0 with bootstrap 5

    Problem since 1.40.0 with bootstrap 5

    Hello,

    The following code of bootstrap produce a build error since sass 1.40.0 (https://github.com/twbs/bootstrap/blob/main/scss/mixins/_grid.scss)

    margin-top: calc(var(--#{$variable-prefix}gutter-y) * -1); // stylelint-disable-line function-disallowed-list
    margin-right: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list
    margin-left: calc(var(--#{$variable-prefix}gutter-x) * -.5); // stylelint-disable-line function-disallowed-list
    

    If I remove the minus sign before 1 or .5 it works. I'm not sure that multiplication should failed because of a minus sign.

    bug needs info 
    opened by kris2kris 17
  • Incorrect compilation when extending %placeholder which has parent selectors inside

    Incorrect compilation when extending %placeholder which has parent selectors inside

    Hi sass team,

    I am currently facing a problem in the process of migrating node-sass to sass. See the minimal reproducible example below.

    // test.scss
    %foo {
      &:hover {
        background-color: blue;
      }
    
      @media (min-width: 500px) {
        &,
        &:hover {
          background-color: red;
        }
      }
    }
    
    .bar {
      @extend %foo;
    }
    

    the compilation of sass

    .bar:hover {
      background-color: blue;
    }
    @media (min-width: 500px) {
      /* .bar:hover is missing */
      .bar { 
        background-color: red;
      }
    }
    

    expected compilation(the output of node-sass)

    .bar:hover {
      background-color: blue; 
    }
    
    @media (min-width: 500px) {
      .bar, .bar:hover {
        background-color: red; 
      } 
    }
    
    opened by ah-yu 1
  • Dead code in `@at-root` query parsing

    Dead code in `@at-root` query parsing

    https://github.com/sass/dart-sass/blob/641d8e196f2c8a85d3d54a8434dc90c10d4aaf4f/lib/src/parse/stylesheet.dart#L768-L772

    This branch can never be true, as this function is only called if the below condition is true:

    https://github.com/sass/dart-sass/blob/641d8e196f2c8a85d3d54a8434dc90c10d4aaf4f/lib/src/parse/stylesheet.dart#L753-L754

    opened by connorskees 0
  • Crash when custom property in style declaration

    Crash when custom property in style declaration

    dart-sass will crash on the following input:

    a {
        color: {
            --foo: bar;
        }
    }
    
    Stacktrace
    Unexpected exception:
    Invalid argument(s): parsedAsCustomProperty must be false if name doesn't begin with "--".
    
    
    package:sass/src/ast/css/modifiable/declaration.dart 30  new ModifiableCssDeclaration
    package:sass/src/visitor/evaluate.dart 1141              _EvaluateVisitor.visitDeclaration
    package:sass/src/ast/sass/statement/declaration.dart 65  Declaration.accept
    package:sass/src/visitor/evaluate.dart 1156              _EvaluateVisitor.visitDeclaration.<fn>      
    package:sass/src/environment.dart 762                    Environment.scope
    package:sass/src/visitor/evaluate.dart 1154              _EvaluateVisitor.visitDeclaration
    package:sass/src/ast/sass/statement/declaration.dart 65  Declaration.accept
    package:sass/src/visitor/evaluate.dart 1912              _EvaluateVisitor.visitStyleRule.<fn>.<fn>   
    package:sass/src/visitor/evaluate.dart 3291              _EvaluateVisitor._withStyleRule
    package:sass/src/visitor/evaluate.dart 1910              _EvaluateVisitor.visitStyleRule.<fn>        
    package:sass/src/environment.dart 762                    Environment.scope
    package:sass/src/visitor/evaluate.dart 3249              _EvaluateVisitor._withParent
    package:sass/src/visitor/evaluate.dart 1909              _EvaluateVisitor.visitStyleRule
    package:sass/src/ast/sass/statement/style_rule.dart 30   StyleRule.accept
    package:sass/src/visitor/evaluate.dart 938               _EvaluateVisitor.visitStylesheet
    package:sass/src/visitor/evaluate.dart 746               _EvaluateVisitor._execute.<fn>
    package:sass/src/visitor/evaluate.dart 3139              _EvaluateVisitor._withEnvironment
    package:sass/src/visitor/evaluate.dart 716               _EvaluateVisitor._execute
    package:sass/src/visitor/evaluate.dart 532               _EvaluateVisitor.run.<fn>
    dart:async                                               runZoned
    package:sass/src/evaluation_context.dart 57              withEvaluationContext
    package:sass/src/visitor/evaluate.dart 525               _EvaluateVisitor.run
    package:sass/src/visitor/evaluate.dart 97                evaluate
    package:sass/src/compile.dart 151                        _compileStylesheet
    package:sass/src/compile.dart 68                         compile
    package:sass/src/executable/compile_stylesheet.dart 97   compileStylesheet
    d:\a\dart-sass\dart-sass\bin\sass.dart 65                main
    
    opened by connorskees 2
  • Crash on float with leading sign but with no decimal

    Crash on float with leading sign but with no decimal

    dart-sass will crash on the following input:

    a {
        color: +.;
    }
    
    a {
        color: -.;
    }
    
    Stacktrace
    Unexpected exception:
    FormatException: Invalid double
    +
    
    
    dart:core                                                double.parse
    package:sass/src/parse/stylesheet.dart 2543              StylesheetParser._number
    package:sass/src/parse/stylesheet.dart 2473              StylesheetParser._plusExpression
    package:sass/src/parse/stylesheet.dart 2221              StylesheetParser._singleExpression
    package:sass/src/parse/stylesheet.dart 1754              StylesheetParser._expression
    package:sass/src/parse/stylesheet.dart 406               StylesheetParser._declarationOrBuffer
    package:sass/src/parse/stylesheet.dart 322               StylesheetParser._declarationOrStyleRule
    package:sass/src/parse/stylesheet.dart 189               StylesheetParser._statement
    package:sass/src/parse/scss.dart 99                      ScssParser.children
    package:sass/src/parse/stylesheet.dart 3906              StylesheetParser._withChildren
    package:sass/src/parse/stylesheet.dart 490               StylesheetParser._styleRule
    package:sass/src/parse/stylesheet.dart 275               StylesheetParser._variableDeclarationOrStyleRule
    package:sass/src/parse/stylesheet.dart 190               StylesheetParser._statement
    package:sass/src/parse/stylesheet.dart 91                StylesheetParser.parse.<fn>.<fn>
    package:sass/src/parse/scss.dart 137                     ScssParser.statements
    package:sass/src/parse/stylesheet.dart 82                StylesheetParser.parse.<fn>
    package:sass/src/parse/parser.dart 713                   Parser.wrapSpanFormatException
    package:sass/src/parse/stylesheet.dart 78                StylesheetParser.parse
    package:sass/src/ast/sass/statement/stylesheet.dart 107  new Stylesheet.parseScss
    package:sass/src/ast/sass/statement/stylesheet.dart 83   new Stylesheet.parse
    package:sass/src/import_cache.dart 206                   ImportCache.importCanonical.<fn>
    dart:collection                                          _LinkedHashMapMixin.putIfAbsent
    package:sass/src/import_cache.dart 201                   ImportCache.importCanonical
    package:sass/src/compile.dart 59                         compile
    package:sass/src/executable/compile_stylesheet.dart 97   compileStylesheet
    d:\a\dart-sass\dart-sass\bin\sass.dart 65                main
    
    opened by connorskees 0
  • Crash when selector ends with escaped backslash and no whitespace

    Crash when selector ends with escaped backslash and no whitespace

    dart-sass will crash on the following input:

    \\{}
    
    Stacktrace
    Unexpected exception:
    RangeError (end): Invalid value: Not in inclusive range 0..8: 9
    
    
    dart:core                                               _StringBase.substring
    package:sass/src/utils.dart 78                          trimAscii
    package:sass/src/visitor/evaluate.dart 3153             _EvaluateVisitor._interpolationToValue
    package:sass/src/visitor/evaluate.dart 1869             _EvaluateVisitor.visitStyleRule
    package:sass/src/ast/sass/statement/style_rule.dart 30  StyleRule.accept
    package:sass/src/visitor/evaluate.dart 938              _EvaluateVisitor.visitStylesheet
    package:sass/src/visitor/evaluate.dart 746              _EvaluateVisitor._execute.<fn>
    package:sass/src/visitor/evaluate.dart 3139             _EvaluateVisitor._withEnvironment
    package:sass/src/visitor/evaluate.dart 716              _EvaluateVisitor._execute
    package:sass/src/visitor/evaluate.dart 532              _EvaluateVisitor.run.<fn>
    dart:async                                              runZoned
    package:sass/src/evaluation_context.dart 57             withEvaluationContext
    package:sass/src/visitor/evaluate.dart 525              _EvaluateVisitor.run
    package:sass/src/visitor/evaluate.dart 97               evaluate
    package:sass/src/compile.dart 151                       _compileStylesheet
    package:sass/src/compile.dart 68                        compile
    package:sass/src/executable/compile_stylesheet.dart 97  compileStylesheet
    d:\a\dart-sass\dart-sass\bin\sass.dart 65               main
    
    opened by connorskees 0
Releases(1.57.1)
A reference credential wallet built on Flutter and DIDKit.

Check out the Credible documentation here. Credible Credible is a native mobile wallet that supports W3C Verifiable Credentials and Decentralized Iden

Spruce Systems, Inc. 31 Nov 7, 2022
A reference app in flutter using the BLoC pattern.

flutter_dice A sample Flutter app that shows how to manage responsive state using the provider pattern. Concepts Illustrated Provider pattern Using a

CodeGrue 74 Nov 18, 2022
An address search field which helps to autocomplete an address by a reference

Address Search Field Widget builders to create 'address search widgets' which helps to autocomplete an address using a reference. They can be used to

Jose Luna 13 Aug 14, 2022
Get It - Simple direct Service Locator that allows to decouple the interface from a concrete implementation and to access the concrete implementation from everywhere in your App. Maintainer: @escamoteur

❤️ Sponsor get_it This is a simple Service Locator for Dart and Flutter projects with some additional goodies highly inspired by Splat. It can be used

Flutter Community 1k Jan 1, 2023
Mysql.dart - MySQL client for Dart written in Dart

Native MySQL client written in Dart for Dart See example directory for examples

null 48 Dec 29, 2022
Socketio dart server and client - Full Socket.io implementation using Dart Lang

Getting Started Step 1: Run dart_server.dart Step 2: Android Emulator has proble

Trần Thiên Trọng 1 Jan 23, 2022
A build system for Dart written in Dart

These packages provide libraries for generating, compiling and serving Dart code. Getting started with build_runner General FAQ Windows FAQ FAQ for Bu

Dart 676 Dec 24, 2022
Tool made in Dart that allows you to dynamically generate JSON files from data models written in Dart.

Dart JSON Generator Versión v1.1.1 Dart JSON Generator es una herramienta que permite generar archivos JSON a partir de mapas como modelos de datos en

Joinner Medina 7 Nov 23, 2022
A dart implementation of fixed precision numbers.

The Fixed package allows you to store and perform maths on numbers with a fixed scale (fixed no. of decimal places). All amounts are store as integers

Brett Sutton 6 Jun 4, 2022
The Dart language implementation of gRPC.

The Dart implementation of gRPC: A high performance, open source, general RPC framework that puts mobile and HTTP/2 first. Learn more Quick Start - ge

grpc 737 Jan 6, 2023
A simple dart zeromq implementation/wrapper around the libzmq C++ library

dartzmq A simple dart zeromq implementation/wrapper around the libzmq C++ library Features Currently supported: Creating sockets (pair, pub, sub, req,

Moritz Wirger 18 Dec 29, 2022
Firebase dart common interface and implementation for Browser, VM, node and flutter

firebase.dart Firebase dart common interface and implementation for Browser, VM, node and flutter Firebase Initialization Usage in browser import 'pac

Tekartik 6 Nov 28, 2021
A web-safe implementation of dart.io.Platforms. Helps avoid the "Unsupported operation: Platform._operatingSystem" runtime error.

Universal Platform - A Web-safe Platform class Currently, if you include the dart.io.Platform anywhere in your code, your app will throw the following

gskinner team 86 Nov 20, 2022
A dart implementation of the chord.js javascript package to display beautiful chord diagrams

flutter_guitar_tabs This is a dart implementation of the chord.js javascript package to display beautiful chord diagrams like the ones below. Where to

null 20 Nov 16, 2022
Flutter plugin that provides a quick&dirty workaround for incompatibility between VMWare Airwatch MDM solution and Dart Sockets implementation

airwatch_socket_workaround This plugin has been created to enable flutter apps to reach endpoints that are only reachable using a VMWare airwatch per

Gonçalo Silva 5 Nov 11, 2022
ESP-Touch Dart API for Flutter. Platform-specific implementation for Android (Java) and iOS (Objective-C).

esptouch_flutter Flutter plugin for ESP-Touch to configure network for ESP-8266 and ESP-32 devices. Runs on iOS and Android. esptouch_flutter is Flutt

SMAHO Engineering OSS 86 Dec 10, 2022
Implementation of data structures and algorithms in Dart programming language.

Algorithms in Dart Implementation of several algorithms with Dart programming language. Use dartdoc to generate documentation. Lists List data structu

Mafinar Khan 197 Dec 24, 2022
Lite-graphql - A light way implementation of GraphQL client in dart language

lite GraphQL client A light way implementation of GraphQL client in dart languag

Vincenzo Palazzo 3 Mar 17, 2022
Dart Implementation of the ISO-8583 banking protocol.

Dart Implementation of the ISO-8583 banking protocol. Supports 03xx message class (File Actions Message - 1987) and is compatible with most PoS device

Mahdi K. Fard 11 Dec 8, 2022