You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.4 KiB
67 lines
1.4 KiB
11 months ago
|
import 'package:flutter/widgets.dart';
|
||
|
import 'package:get/get.dart';
|
||
|
|
||
|
class RankViewModel extends GetxController {
|
||
|
final txtSearch = TextEditingController().obs;
|
||
|
final rankDetailArr = [
|
||
|
{
|
||
|
"rank": "1",
|
||
|
"image": "assets/img/artist_pic.png",
|
||
|
"name": "背对背拥抱",
|
||
|
"artists": ""
|
||
|
},
|
||
|
{
|
||
|
"rank": "2",
|
||
|
"image": "assets/img/artist_pic.png",
|
||
|
"name": "背对背拥抱",
|
||
|
"artists": "林俊杰"
|
||
|
},
|
||
|
{
|
||
|
"rank": "3",
|
||
|
"image": "assets/img/artist_pic.png",
|
||
|
"name": "背对背拥抱r",
|
||
|
"artists": "林俊杰"
|
||
|
},
|
||
|
{
|
||
|
"rank": "4",
|
||
|
"image": "assets/img/artist_pic.png",
|
||
|
"name": "背对背拥抱",
|
||
|
"artists": "林俊杰"
|
||
|
},
|
||
|
{
|
||
|
"rank": "5",
|
||
|
"image": "assets/img/artist_pic.png",
|
||
|
"name": "背对背拥抱",
|
||
|
"artists": "林俊杰"
|
||
|
},
|
||
|
{
|
||
|
"rank": "6",
|
||
|
"image": "assets/img/artist_pic.png",
|
||
|
"name": "背对背拥抱",
|
||
|
"artists": "林俊杰"
|
||
|
},
|
||
|
{
|
||
|
"rank": "7",
|
||
|
"image": "assets/img/artist_pic.png",
|
||
|
"name": "背对背拥抱",
|
||
|
"artists": "林俊杰"
|
||
|
},
|
||
|
{
|
||
|
"rank": "8","image": "assets/img/artist_pic.png",
|
||
|
"name": "背对背拥抱",
|
||
|
"artists": "林俊杰"
|
||
|
},
|
||
|
{
|
||
|
"rank": "9",
|
||
|
"image": "assets/img/artist_pic.png",
|
||
|
"name": "背对背拥抱",
|
||
|
"artists": "林俊杰"
|
||
|
},
|
||
|
|
||
|
].obs;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
//.navigationViewStyle(StackNavigationViewStyle())
|