Use consistent share icon across course share button and invite menu (#5797)
* Initial plan * Use share_outlined icon instead of upload in ShareRoomButton Co-authored-by: ggurdin <46800240+ggurdin@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: ggurdin <46800240+ggurdin@users.noreply.github.com>
This commit is contained in:
parent
caf6c53a0c
commit
a754d16fc3
1 changed files with 1 additions and 2 deletions
|
|
@ -2,7 +2,6 @@ import 'package:flutter/foundation.dart';
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
|
||||
import 'package:material_symbols_icons/symbols.dart';
|
||||
import 'package:matrix/matrix.dart';
|
||||
import 'package:universal_html/html.dart' as html;
|
||||
|
||||
|
|
@ -24,7 +23,7 @@ class ShareRoomButton extends StatelessWidget {
|
|||
return PopupMenuButton(
|
||||
useRootNavigator: true,
|
||||
tooltip: L10n.of(context).shareCourse,
|
||||
child: const Icon(Symbols.upload),
|
||||
child: const Icon(Icons.share_outlined),
|
||||
onSelected: (value) async {
|
||||
final spaceCode = room.classCode!;
|
||||
String toCopy = spaceCode;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue