Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions lib/samples/gauge/axis_feature/non_linearlabel.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import 'package:flutter_examples/model/model.dart';
import 'package:flutter_examples/widgets/flutter_backdrop.dart';
import 'package:scoped_model/scoped_model.dart';
import 'package:url_launcher/url_launcher.dart';
import 'package:intl/intl.dart' show NumberFormat;

class RadialNonLinearLabel extends StatefulWidget {
final SubItemList sample;
Expand Down Expand Up @@ -249,9 +248,7 @@ class CustomAxis extends RadialAxis{
color: Colors.grey,
thickness: 10,),
radiusFactor: radiusFactor,
){

}
);

@override
List<CircularAxisLabel> generateVisibleLabels(){
Expand Down
5 changes: 0 additions & 5 deletions lib/samples/gauge/pointers/multiple_ranges.dart
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,6 @@ class _FrontPanelState extends State<FrontPanel> {
_FrontPanelState(this.sample);
@override
Widget build(BuildContext context) {
setState((){
_position = MediaQuery.of(context).orientation == Orientation.portrait ? 0.2 : 0.33;
});

return ScopedModelDescendant<SampleListModel>(
rebuildOnChange: true,
builder: (context, _, model) {
Expand Down Expand Up @@ -223,7 +219,6 @@ SfRadialGauge getMultipleRangePointerExampleGauge(bool isTileView) {
);
}

double _position = 0.25;



Expand Down