mirror of
https://github.com/foss42/apidash.git
synced 2025-05-31 06:08:09 +08:00
fix: nav bar selectedIcon, color
This commit is contained in:
@ -115,12 +115,3 @@ class _RequestPaneState extends State<RequestPane>
|
||||
super.dispose();
|
||||
}
|
||||
}
|
||||
|
||||
class ViewCodeButton extends StatelessWidget {
|
||||
const ViewCodeButton({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container();
|
||||
}
|
||||
}
|
||||
|
@ -73,8 +73,8 @@ class ResponsePaneHeader extends StatelessWidget {
|
||||
Text.rich(
|
||||
TextSpan(
|
||||
children: [
|
||||
const TextSpan(
|
||||
text: "Response (",
|
||||
TextSpan(
|
||||
text: !kIsMobile ? "Response (" : "",
|
||||
),
|
||||
TextSpan(
|
||||
text: "$responseStatus",
|
||||
@ -86,8 +86,8 @@ class ResponsePaneHeader extends StatelessWidget {
|
||||
fontFamily: kCodeStyle.fontFamily,
|
||||
),
|
||||
),
|
||||
const TextSpan(
|
||||
text: ")",
|
||||
TextSpan(
|
||||
text: !kIsMobile ? ")" : "",
|
||||
),
|
||||
],
|
||||
style: Theme.of(context).textTheme.titleMedium,
|
||||
|
Reference in New Issue
Block a user