realtime_ranking

Last updated:

0 purchases

realtime_ranking Image
realtime_ranking Images
Add to Cart

Description:

realtime ranking

RealtimeRanking #

Intoduction #

Usage #
Normal #
import 'package:flutter/material.dart';
import 'package:realtime_ranking/realtime_ranking.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
bool _isExpanded = false;

@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
backgroundColor: Colors.white,
body: SafeArea(
child: Theme(
data: Theme.of(context).copyWith(
primaryColor: Colors.black,
backgroundColor: Colors.white,
),
child: RealtimeRanking(
header: RealtimeRankingNormalHeader(
item: RealtimeRankingNormalItem(
title: 'Hello.',
subtitle: '2022. 03. 20.',
),
onTap: () {
print('Header Select!!');
},
),
animatedHeaders: List.generate(
15,
(index) {
final RealtimeRankingIndexItem item = RealtimeRankingIndexItem(
title: 'Ranking',
index: index + 1,
);
return RealtimeRankingIndexHeader(
item: item,
onTap: () {
print('${item.index}. ${item.title} Select!!');
},
);
},
),
keepAlive: false,
isSelected: _isExpanded,
trailing: RealtimeRankingIconButton(
isSelected: _isExpanded,
animated: true,
onTap: () {
setState(() {
_isExpanded = !_isExpanded;
});
},
),
),
),
),
),
);
}
}
copied to clipboard
Custom #
import 'package:flutter/material.dart';
import 'package:realtime_ranking/realtime_ranking.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
bool _isExpanded = false;

@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
backgroundColor: Colors.white,
body: SafeArea(
child: Theme(
data: Theme.of(context).copyWith(
primaryColor: Colors.black,
backgroundColor: Colors.white,
),
child: RealtimeRanking.custom(
header: GestureDetector(
onTap: () {
print('Header Select!!');
},
child: Container(
color: Colors.red,
),
),
animatedHeaders: [
Container(
color: Colors.blue,
),
Container(
color: Colors.black,
),
],
keepAlive: true,
isSelected: _isExpanded,
trailing: RealtimeRankingIconButton(
isSelected: _isExpanded,
animated: true,
onTap: () {
setState(() {
_isExpanded = !_isExpanded;
});
},
),
),
),
),
),
);
}
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.