Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tilucasoli committed Jun 28, 2024
1 parent 6a8bd4b commit a70cf56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'package:flutter/material.dart';
import 'package:mix/mix.dart';

// Wrong case
final theme = MixThemeData(
final wrongTheme = MixThemeData(
colors: {
// expect_lint: mix_avoid_defining_tokens_within_theme_data
ColorToken('a'): Colors.black,
Expand Down Expand Up @@ -34,7 +34,7 @@ final radiusToken = RadiusToken('c');
final spaceToken = SpaceToken('d');
final textStyleToken = TextStyleToken('e');

final otherTheme = MixThemeData(
final correctTheme = MixThemeData(
colors: {
colorToken: Colors.black,
},
Expand Down
2 changes: 1 addition & 1 deletion website/pages/docs/guides/animations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: "Animations"
---

# Animations

In this guide, we will learn how animations work in Mix. Firstly, we need to understand how Mix styles work. All stylizations begin with the `Style` class.

## Style Class
Expand Down

0 comments on commit a70cf56

Please sign in to comment.