# Mirroring in Flutter Linear Gauge (SfLinearGauge)

The [`isMirrored`](https://pub.dev/documentation/syncfusion_flutter_gauges/latest/gauges/SfLinearGauge/isMirrored.html) property in [`SfLinearGauge`](https://pub.dev/documentation/syncfusion_flutter_gauges/latest/gauges/SfLinearGauge-class.html) allows you to mirror all the gauge elements. This feature is useful when you need to display the gauge in the opposite direction.

{% tabs %}
{% highlight dart %}

import 'package:flutter/material.dart';
import 'package:syncfusion_flutter_gauges/gauges.dart';

void main() => runApp(const LinearGaugeDemo());

class LinearGaugeDemo extends StatelessWidget {
  const LinearGaugeDemo({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Linear Gauge Demo',
      theme: ThemeData(primarySwatch: Colors.blue),
      home: const Scaffold(
        body: Center(
          child: SfLinearGauge(isMirrored: true),
        ),
      ),
    );
  }
}

{% endhighlight %}
{% endtabs %}

![Mirror linear gauge](https://help.syncfusion.com/chart-sdk/flutter/linear-gauge/images/mirrored/mirrored.png)

## Comparison for the mirrored and normal gauge

The following screenshot provides a visual comparison between a mirrored Linear Gauge and a normal Linear Gauge. 

![Mirrored linear gauge comparsion](https://help.syncfusion.com/chart-sdk/flutter/linear-gauge/images/mirrored/mirror_comparison.png)