We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e8873b commit cc6be39Copy full SHA for cc6be39
lib/components/cards/user_info_card.dart
@@ -205,7 +205,11 @@ class UserInfoCard extends StatelessWidget {
205
),
206
Padding(
207
padding: const EdgeInsets.only(left: 20, top: 4),
208
- child: Text((data.bio?.isEmpty ?? true) ? '这个人很懒,什么都没写' : data.bio!),
+ child: Row(crossAxisAlignment: CrossAxisAlignment.start, children: [
209
+ Icon(Icons.sell),
210
+ const SizedBox(width: 5.0),
211
+ Text((data.bio?.isEmpty ?? true) ? '这个人很懒,什么都没写' : data.bio!),
212
+ ]),
213
214
215
0 commit comments