Skip to content
This repository was archived by the owner on Jun 13, 2024. It is now read-only.
This repository was archived by the owner on Jun 13, 2024. It is now read-only.

Code segment generator will get different imports on unix and macOS, verify-l10n is different on windows #37

@perclasson

Description

@perclasson

Code segments generator has different output for unix and macOS

See the transformations demo.

In the subsegment transformationsDemo#2 we have the imports and these are the outputs generated on a macOS system:

import 'dart:collection' show IterableMixin;
import 'dart:math';
import 'dart:ui' show Vertices;
import 'package:flutter/material.dart' hide Gradient;
import 'package:vector_math/vector_math_64.dart' show Vector3;

In the subsegment transformationsDemo#3 we have the imports and theser are the outputs generated on Ubuntu:

import 'package:flutter/material.dart';
import 'package:vector_math/vector_math_64.dart' show Vector3;
import 'transformations_demo_inertial_motion.dart';

Verify l10n has different output on Windows

To be debugged.

Migrated from material-components/material-components-flutter-gallery#565

Metadata

Metadata

Assignees

No one assigned

    Labels

    P3Priority 3 - Could havebugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions