Flutter:列表地图组合
我制作了三个列表,第一个列表用于免费服务器,第二个列表用于付费服务器,第三个列表包括两者。 问题是,当他添加第三个列表中的列表时,他按顺序添加它们 换句话说,他添加了上面的整个第一个列表和下面的第二个列表 我想要一种方法来组合两个列表并根据名称、号码或任何其他内容排列它们。重要的是它们不是按照同一个列表排列的(第一个在上面,第二个在下面)
I made three lists, the first for free servers, the second for paid servers, and the third list includes both together.
The problem is that when he adds the lists in the third list, he adds them in order
In other words, he adds the whole first list above and the second list below
I want a way to combine the two lists and arrange them according to name, number, or any other thing. The important thing is that they are not arranged according to the same list (the first is above and the second is below)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在“allservs”上使用排序方法。这是一个根据“cnumber”对组合列表进行排序的工作示例:
You can use sort method on 'allservs'. Here is a working sample that sorts combined list based on 'cnumber':
最简单的方法是这样做:
例如,您可以在 DartPad 中看到此示例:
image< /a>
这将导致输出:
The simples way would be to do it like this:
For Example, you can see this sample in DartPad:
image
which would result in outputing: