A Vector Math library for 2D and 3D applications.
- pub page: https://pub.dev/packages/vector_math
- docs: https://pub.dev/documentation/vector_math/latest/
- dependent packages: https://pub.dev/packages?q=dependency%3Avector_math&sort=top
A Vector Math library for 2D and 3D applications.
A Vector Math library for 2D and 3D applications.
A Vector Math library for 2D and 3D applications.
Implementations of SHA, MD5, and HMAC cryptographic functions
This package provides a library that performs static analysis of Dart code.
| bazel_worker (https://github.com/dart-lang/bazel_worker/compare/ceeba09..9710de6): | |
| 9710de6 2022-04-19 Devon Carew Update pubspec.yaml (#62) | |
| ec5905a 2022-03-20 Kevin Moore Fix CI (#61) | |
| benchmark_harness (https://github.com/dart-lang/benchmark_harness/compare/0530da6..0ae822e): | |
| 0ae822e 2022-05-03 Devon Carew Merge pull request #74 from dart-lang/devoncarew-patch-1 | |
| 0a216e4 2022-05-03 Devon Carew Update README.md | |
| 480b8bf 2022-05-03 Jonas Termansen Version 2.1.0. (#72) | |
| boolean_selector (https://github.com/dart-lang/boolean_selector/compare/437e7f0..1d3565e): |
| [ | |
| { | |
| "name": "AboutDialog", | |
| "description": "Foo my summary.", | |
| "categories": [ | |
| "My awesome category", | |
| "Part 2" | |
| ], | |
| "library": "material", | |
| "parent": "StatelessWidget" |
| import 'dart:collection'; | |
| import 'dart:convert'; | |
| import 'dart:io'; | |
| import 'package:analyzer/dart/analysis/analysis_context.dart'; | |
| import 'package:analyzer/dart/analysis/analysis_context_collection.dart'; | |
| import 'package:analyzer/dart/analysis/results.dart'; | |
| import 'package:analyzer/dart/analysis/session.dart'; | |
| import 'package:analyzer/dart/constant/value.dart'; | |
| import 'package:analyzer/dart/element/element.dart'; |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| home: Scaffold( | |
| appBar: AppBar( | |
| title: Text('Title!'), | |
| ), | |
| body: Text('Center me!'), | |
| ), |
| void main() { | |
| Foo foo = new Foo('foo'); | |
| Foo bar = Foo('bar'); | |
| for (int i = 0; i < 5; i++) { | |
| print('hello ${i + 1}'); | |
| } | |
| print(foo); | |
| print(bar); |